-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "butterscotch-pudding",
"version": "2.0.0",
"description": "Create figgy-pudding instances from yargs options",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"prerelease": "npm t",
"release": "standard-version -s",
"postrelease": "npm publish && git push --follow-tags",
"pretest": "semistandard",
"test": "tap --100 test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evocateur/butterscotch-pudding.git"
},
"keywords": [
"yargs",
"figgy-pudding",
"config",
"options"
],
"author": "Daniel Stockman <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/evocateur/butterscotch-pudding/issues"
},
"homepage": "https://github.com/evocateur/butterscotch-pudding#readme",
"engines": {
"node": ">=8.9.0"
},
"devDependencies": {
"semistandard": "^13.0.1",
"standard-version": "^4.4.0",
"tap": "^12.5.2"
},
"dependencies": {
"figgy-pudding": "^3.5.1"
}
}