forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 892 Bytes
/
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
{
"name": "stringify-package",
"version": "1.0.1",
"description": "stringifies npm-written json files",
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/npm/stringify-package.git"
},
"keywords": [
"npm",
"json",
"stringify",
"package.json"
],
"author": "Kat Marchán <kzm@zkat.tech>",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/stringify-package/issues"
},
"homepage": "https://github.com/npm/stringify-package",
"scripts": {
"prerelease": "npm t",
"release": "standard-version -s",
"postrelease": "npm publish",
"postpublish": "git push --follow-tags",
"pretest": "standard",
"test": "tap -J --coverage --100 test/*.js"
},
"devDependencies": {
"standard": "11",
"standard-version": "9.5.0",
"tap": "18.0.0"
}
}