-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·43 lines (43 loc) · 924 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
39
40
41
42
43
{
"name": "cv-compiler",
"version": "1.0.0",
"description": "",
"author": "Olivier Rodomond <[email protected]>",
"license": "ISC",
"repository": "https://github.com/olivierodo/cv-compiler.git",
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"js-yaml": "^3.11.0",
"moment": "^2.22.1",
"probot": "^6.0.0",
"request": "^2.86.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"jest": "^22.4.3",
"nodemon": "^1.17.2",
"smee-client": "^1.0.1",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"jest": {
"verbose": true,
"collectCoverage": true
},
"standard": {
"ignore": [
"/docs"
],
"env": [
"jest"
]
}
}