-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
65 lines (65 loc) · 1.62 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
{
"name": "npm-module-checklist",
"version": "1.6.0",
"description": "Steps to check when starting, working and publishing a module to NPM",
"main": "index.js",
"scripts": {
"build": "npm run update-checklist && npm run update-contributing",
"update-checklist": "um README.md '## Checklist' CHECKLIST.md",
"update-contributing": "um README.md '## Contributing' CONTRIBUTING.md",
"test": "npm run nice",
"commit": "git-issues && commit-wizard",
"issues": "git-issues",
"nice": "grunty grunt-nice-package nice-package",
"next-update": "next-update -k true"
},
"contributors": [
"Kent C. Dodds https://github.com/kentcdodds"
],
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/npm-module-checklist.git"
},
"keywords": [
"npm",
"module",
"package",
"publish",
"testing",
"checklist",
"check",
"quality",
"good",
"practice"
],
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/npm-module-checklist/issues"
},
"homepage": "https://github.com/bahmutov/npm-module-checklist#readme",
"config": {
"pre-git": {
"commit-msg": "validate-commit-msg",
"pre-commit": [
"npm run build"
],
"pre-push": [],
"post-commit": [
"npm version"
],
"post-merge": []
}
},
"devDependencies": {
"git-issues": "1.2.0",
"grunt-nice-package": "0.9.4",
"grunty": "0.2.0",
"next-update": "0.9.5",
"pre-git": "1.3.1",
"update-markdown": "1.1.3"
}
}