-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
77 lines (77 loc) · 1.9 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "wsrun",
"version": "5.2.4",
"description": "executes commands on packages in parallel, but is aware of the dependencies between them",
"main": "./build/index.js",
"repository": "hfour/wsrun",
"author": "hfour",
"license": "MIT",
"jest": {
"verbose": false,
"preset": "ts-jest",
"testPathIgnorePatterns": [
"<rootDir>/tmp",
"<rootDir>/node_modules/",
"\\.util\\.ts$"
],
"testMatch": [
"<rootDir>/tests/**/*.ts",
"<rootDir>/src/**/*.spec.ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/tmp"
]
},
"bin": {
"wsrun": "./bin/wsrun.js"
},
"files": [
"bin/*",
"build/**/!(*.spec.js|*.spec.js.map)"
],
"devDependencies": {
"@types/bluebird": "^3.5.18",
"@types/glob": "^5.0.33",
"@types/jest": "^21.1.6",
"@types/lodash": "^4.14.85",
"@types/minimatch": "^3.0.3",
"@types/mkdirp": "^0.5.2",
"@types/mz": "^0.0.32",
"@types/node": "^8.0.53",
"@types/rimraf": "^2.0.2",
"@types/split": "^0.3.28",
"@types/yargs": "^13.0.0",
"jest": "^23.0.0",
"mkdirp": "^0.5.1",
"mz": "^2.7.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"semantic-release": "^15.13.18",
"ts-jest": "23.10.5",
"ts-mockito": "^2.5.0",
"typescript": "^3.1.1",
"prettier": "^1.19.1"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "yarn build && yarn test:prettier && jest",
"test:prettier": "prettier -c '**/*.ts' '**/*.json'",
"test:watch": "jest --watch",
"dev": "run-p test:watch watch",
"prepublish": "tsc",
"release": "semantic-release"
},
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.3.0",
"glob": "^7.1.2",
"lodash": "^4.17.4",
"minimatch": "^3.0.4",
"split": "^1.0.1",
"throat": "^4.1.0",
"yargs": "^13.0.0",
"jest-changed-files": "^24.9.0"
}
}