-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "create-package-json",
"version": "1.1.0",
"description": "Create a package.json",
"main": "index.js",
"type": "commonjs",
"bin": {
"create-package-json": "bin/create-package-json"
},
"scripts": {
"test": "semistandard && mocha",
"test:debug": "mocha --inspect --inspect-brk --timeout=0",
"test:cover": "c8 mocha",
"lint:fix": "semistandard --fix",
"debug": "mocha --inspect --inspect-brk",
"release": "npm t && standard-version && npm publish",
"postpublish": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/wesleytodd/create-package-json"
},
"keywords": [
"scaffold",
"generator",
"package.json",
"packagejson",
"create"
],
"author": "Wes Todd <[email protected]>",
"funding": {
"type": "GitHub Sponsor",
"url": "https://github.com/sponsors/wesleytodd"
},
"license": "MIT",
"dependencies": {
"@npmcli/name-from-folder": "^2.0.0",
"@npmcli/package-json": "^5.0.0",
"fs-extra": "^11.1.1",
"loggerr": "^3.0.0",
"npm-package-arg": "^11.0.1",
"opta": "^1.0.0",
"safe-parse-list": "^0.1.1",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"c8": "^8.0.1",
"fs-test-fixtures": "^0.1.3",
"mocha": "^10.2.0",
"semistandard": "^17.0.0",
"standard-version": "^9.0.0"
}
}