-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
56 lines (56 loc) · 1.19 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
{
"name": "coffee",
"version": "5.5.1",
"description": "Test command line on Node.js.",
"main": "index.js",
"files": [
"index.js",
"lib",
"index.d.ts"
],
"dependencies": {
"cross-spawn": "^6.0.5",
"debug": "^4.1.0",
"is-type-of": "^1.2.1"
},
"devDependencies": {
"@types/node": "^10.12.18",
"egg-bin": "^5.5.0",
"eslint": "^8.28.0",
"eslint-config-egg": "^12.1.0",
"lodash.ismatch": "^4.4.0",
"mm": "^3.2.1",
"mocha": "^10.1.0",
"mz-modules": "^2.1.0",
"nyc": "^11.0.2",
"spy": "^1.0.0",
"tsd": "^0.24.1",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "git://github.com/node-modules/coffee.git"
},
"homepage": "https://github.com/node-modules/coffee",
"author": "popomore <[email protected]>",
"keywords": [
"cli",
"test",
"shell",
"spawn",
"fork",
"child_process",
"exec"
],
"license": "MIT",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "tsd && egg-bin test",
"cov": "tsd && egg-bin cov",
"ci": "npm run lint && npm run cov"
}
}