-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@dash4/cli",
"version": "0.9.3",
"private": false,
"description": "dash4 cli",
"repository": "https://github.com/smollweide/dash4",
"license": "MIT",
"author": "Simon Mollweide<simon.mollweide@gmail.com>",
"main": "./build/index.js",
"typings": "./build/index.d.ts",
"bin": {
"dash4-cli": "./bin/index.js"
},
"files": [
"bin",
"build",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run build:build",
"build:build": "tsc --project tsconfig.server.json --outDir build",
"test": "npm-run-all test:*",
"test-update-snapshots:server": "jest --coverage --update-snapshot --config=jest.server.config.js",
"test:server": "jest --coverage --config=jest.server.config.js",
"watch-build": "tsc --project tsconfig.server.json --watch --outDir build",
"watch-test": "jest --coverage --watchAll --notify --config=jest.server.config.js"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"dependencies": {
"@dash4/log": "0.9.3",
"@namics/prettier-config": "1.1.0",
"chalk": "4.1.0",
"commander": "6.2.0",
"execa": "5.0.0",
"fs-extra": "9.0.1",
"glob": "7.1.6",
"make-dir": "3.1.0",
"prettier": "2.2.1",
"read-pkg": "6.0.0",
"tslib": "2.0.3",
"write-pkg": "4.0.0"
},
"devDependencies": {
"@dash4/config": "0.9.3",
"@namics/ts-config": "1.0.1",
"@types/glob": "7.1.3",
"@types/jest": "26.0.16",
"@types/prettier": "2.1.5",
"@types/react": "16.9.56",
"cpy": "8.1.1",
"del": "6.0.0",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"react": "16.13.1",
"react-test-renderer": "16.13.1",
"ts-jest": "26.4.4",
"typescript": "3.9.5"
}
}