-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
executable file
·42 lines (42 loc) · 1.02 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
{
"name": "chronicler",
"version": "1.0.0",
"description": "Utility to auto publish release drafts with merged PRs",
"main": "src/index.js",
"scripts": {
"test": "ava --verbose",
"dev": "./node_modules/nodemon/bin/nodemon.js --inspect ./src/index.js",
"start": "node ./src/index.js",
"lint": "./node_modules/.bin/eslint ./src ./__tests__",
"precommit": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/NYTimes/chronicler"
},
"author": "Yuraima",
"license": "Apache",
"bugs": {
"url": "https://github.com/NYTimes/chronicler/issues"
},
"homepage": "https://github.com/NYTimes/chronicler#readme",
"devDependencies": {
"ava": "^2.4.0",
"babel-eslint": "^8.2.6",
"eslint": "^5.16.0",
"husky": "^0.14.3",
"nodemon": "^1.19.4"
},
"dependencies": {
"axios": "^0.18.1",
"body-parser": "^1.19.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"moment": "^2.24.0"
},
"ava": {
"require": [
"esm"
]
}
}