This repository was archived by the owner on Mar 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "scripty",
"version": "3.0.0",
"homepage": "https://github.com/testdouble/scripty#readme",
"description": "Because no one should be shell-scripting inside a JSON file.",
"license": "MIT",
"author": "Justin Searls <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/testdouble/scripty.git"
},
"bugs": {
"url": "https://github.com/testdouble/scripty/issues"
},
"main": "lib/scripty.js",
"bin": "cli.js",
"files": [
"cli.js",
"lib",
"scripts",
"scripts-win"
],
"scripts": {
"test:unit": "teenytest 'lib/**/*.test.js' --helper test/unit-helper.js",
"test:safe": "teenytest 'test/safe/**/*.js' --helper test/safe-helper.js",
"test:style": "standard",
"test": "npm run test:unit && npm run test:style && npm run test:safe",
"test:cover": "npm run test:cover:unit && npm run test:cover:safe",
"posttest:cover": "istanbul report",
"test:cover:unit": "istanbul cover --dir coverage/unit teenytest -- 'lib/**/*.test.js' --helper test/unit-helper.js",
"test:cover:safe": "istanbul cover --dir coverage/safe teenytest -- 'test/safe/**/*.js' --helper test/safe-helper.js",
"postversion": "npm publish && git push --follow-tags"
},
"dependencies": {
"async": "^2.6.4",
"glob": "^7.0.3",
"lodash": "^4.17.11",
"resolve-pkg": "^1.0.0"
},
"devDependencies": {
"assert": "^1.3.0",
"intercept-stdout": "^0.1.2",
"istanbul": "^0.4.3",
"semver": "^5.1.0",
"standard": "^12.0.1",
"teenytest": "^5.1.1",
"testdouble": "^3.9.1"
},
"keywords": [
"npm",
"scripts",
"dry",
"scripts",
"shell",
"script",
"management"
],
"standard": {
"globals": [
"td",
"assert",
"UNSUPPORTED_TDD"
]
}
}