-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "flaggy",
"version": "1.5.0",
"description": "Zero dependency command flag generator from a simple javascript object",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text-summary ava",
"prepare": "node prepare.js || echo 'Skipping prepare'"
},
"bugs": {
"url": "https://github.com/simonecorsi/flaggy/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"nodejs",
"npm",
"javascript",
"stringify",
"argv",
"opt",
"flag",
"command",
"parser",
"option parser",
"options"
],
"homepage": "https://github.com/simonecorsi/flaggy",
"author": "Simone Corsi <[email protected]>",
"license": "MIT",
"devDependencies": {
"@saithodev/semantic-release-backmerge": "^3.1.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"@commitlint/cli": "^19.0.1",
"@commitlint/config-conventional": "^19.0.0",
"ava": "^6.1.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.1",
"is-ci": "^3.0.0",
"lint-staged": "^15.2.0",
"markdown-toc": "^1.2.0",
"nyc": "^17.0.0",
"prettier": "^3.0.0"
}
}