-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.98 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
{
"name": "dtb",
"version": "1.0.1",
"description": "The useful development toolbox for Node.js packages.",
"main": "src/index.js",
"directories": {
"doc": "doc",
"test": "test"
},
"author": "Richard Szakacs, [email protected], www.richardszkcs.com",
"homepage": "https://github.com/atjse/dtb#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/atjse/dtb.git"
},
"bugs": {
"url": "https://github.com/atjse/dtb/issues"
},
"license": "MIT",
"keywords": [
"dev",
"development",
"tool",
"tools",
"toolbox",
"toolkit",
"util",
"utils",
"helper",
"helpers",
"node",
"nodejs",
"package"
],
"scripts": {
"gulp": "gulp --gulpfile task/index.js",
"doc": "npm run gulp -- doc",
"check": "standard --env mocha --verbose | snazzy",
"fix": "standard --env mocha --fix",
"test": "istanbul cover _mocha test --recursive",
"prepare": "npm run check && npm run doc && npm run test",
"release-major": "npm run prepare && npm run gulp -- bump.major && npm run gulp -- stamp && npm publish",
"release-minor": "npm run prepare && npm run gulp -- bump.minor && npm run gulp -- stamp && npm publish",
"release-patch": "npm run prepare && npm run gulp -- bump.patch && npm run gulp -- stamp && npm publish",
"release": "npm run release-patch",
"cover": "npm run check && npm run test && istanbul check-coverage",
"report": "npm run test -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"connect": "^3.6.6",
"get-port": "^3.2.0",
"pkg-dir": "^3.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chalk": "^2.4.1",
"coveralls": "^3.0.1",
"fs-extra": "^6.0.1",
"gulp": "^3.9.1",
"istanbul": "^1.1.0-alpha.1",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"semver": "^5.5.0",
"shelljs": "^0.8.2",
"snazzy": "^7.1.1",
"standard": "^11.0.1"
}
}