This repository has been archived by the owner on Feb 16, 2019. It is now read-only.
forked from hfour/wsrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.69 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": "3.6.2",
"description": "executes commands on packages in parallel, but is aware of the dependencies between them",
"main": "./build/index.js",
"author": "hfour",
"license": "MIT",
"repository": "github:whoeverest/wsrun",
"jest": {
"verbose": false,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testPathIgnorePatterns": [
"/src",
"/tmp",
"/node_modules/",
"\\.util\\.ts$"
],
"modulePathIgnorePatterns": [
"/src",
"/tmp"
]
},
"bin": {
"wsrun": "./build/index.js"
},
"files": [
"build/"
],
"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": "^10.0.0",
"jest": "^21.2.1",
"mkdirp": "^0.5.1",
"mz": "^2.7.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"ts-jest": "^21.2.3",
"typescript": "^3.1.1"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"dev": "run-p test:watch watch",
"prepublish": "tsc"
},
"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": "^10.0.3"
}
}