forked from javascript-studio/studio-changes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.24 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": "@studio/changes",
"version": "1.3.0",
"description": "Generate a changelog as part of the npm version command",
"bin": {
"changes": "bin/cmd.js"
},
"main": "lib/changes.js",
"scripts": {
"lint": "eslint .",
"test": "mocha",
"watch": "mocha --watch",
"posttest": "npm run lint",
"preversion": "npm test",
"version": "bin/cmd.js",
"postversion": "git push --follow-tags && npm publish"
},
"keywords": [
"changelog",
"version",
"release",
"productivity"
],
"author": "Maximilian Antoni <[email protected]>",
"contributors": [
"Blade Barringer <[email protected]>"
],
"homepage": "https://github.com/javascript-studio/studio-changes",
"eslintConfig": {
"extends": "@studio",
"rules": {
"no-sync": 0
}
},
"dependencies": {
"detect-indent": "^5.0.0",
"editor": "^1.0.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"@studio/eslint-config": "^1.0.0",
"eslint": "^3.3.1",
"mocha": "^3.0.2",
"sinon": "^1.17.5"
},
"repository": {
"type": "git",
"url": "https://github.com/javascript-studio/studio-changes.git"
},
"files": [
"bin",
"lib",
"LICENSE",
"README.md"
],
"license": "MIT"
}