-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 785 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 785 Bytes
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
{
"name": "pluie-slack",
"version": "1.0.0",
"description": "Pluie dans l'heure dans Slack",
"repository": "https://github.com/Calvein/pluie-slack",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest"
},
"author": "François Robichet <@calvein>",
"license": "MIT",
"dependencies": {
"axios": "^0.19.0",
"micro": "^9.3.4"
},
"devDependencies": {
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2"
},
"prettier": {
"arrowParens": "always",
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
}
}