-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 KB
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
{
"name": "scripture",
"version": "0.1.0",
"description": "A helper tool to keep package.json lean by extracting your NPM scripts into a separate file.",
"bin": "bin/cli.js",
"main": "lib/index.js",
"scripts": {
"lint": "standard --verbose | snazzy",
"lint.fix": "standard --fix",
"the": "node bin/cli.js",
"test": "tap test/**/*test.js",
"test-one": "tap",
"test-with-coverage": "tap test/**/*test.js --100 --coverage-report=html --no-browser",
"ci.test": "tap test/**/*test.js --coverage-report=text-lcov",
"ci.report": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atjse/scripture.git"
},
"author": "Richard Szakacs <richardszkcs@gmail.com> (www.richardszkcs.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/atjse/scripture/issues"
},
"homepage": "https://github.com/atjse/scripture#readme",
"devDependencies": {
"sinon": "^6.1.4",
"snazzy": "^7.1.1",
"standard": "^11.0.1",
"tap": "^12.0.1"
},
"dependencies": {
"js-yaml": "^3.12.0"
}
}