forked from buildafrica/hospitalsghana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.19 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": "hospitalsghana",
"version": "1.0.0",
"description": "An open source database of hospitals in Ghana",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"scss": "node-sass --watch scss/main.scss -o css/",
"build": "node-sass scss/main.scss -o css",
"format:js": "prettier --write",
"lint:js:fix": "eslint --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wecodeafrica/hospitalsghana.git"
},
"author": "Andrew Miracle",
"license": "ISC",
"bugs": {
"url": "https://github.com/wecodeafrica/hospitalsghana/issues"
},
"homepage": "https://github.com/wecodeafrica/hospitalsghana#readme",
"devDependencies": {
"node-sass": "^4.11.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"prettier": "1.18.2"
},
"lint-staged": {
"*.js": [
"npm run format:js",
"npm run lint:js:fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}