forked from nikolajevp/changelog-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
{
"name": "changelog-updater",
"version": "2.0.3",
"description": "Update [Unreleased] in CHANGELOG.md to current package version.",
"main": "lib/index.js",
"bin": {
"changelog-updater": "./bin/changelog-updater.js"
},
"scripts": {
"start": "npm run changelog-updater",
"changelog-updater": "node ./bin/changelog-updater.js",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"travis": "npm run test:coveralls && npm run lint",
"lint": "prettier --check '**/*.js' && eslint .",
"lint:fix": "prettier --write '**/*.js' && eslint --fix .",
"version": "npm run changelog-updater && git add ./CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "https://github.com/nikolajevp/changelog-updater.git"
},
"author": "Pavel Nikolajev",
"contributors": [
{
"name": "Charlie Karniol",
"url": "https://github.com/karniol"
}
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"prettier": "^2.7.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test"
}
}
}