-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
33 lines (33 loc) · 1.11 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
{
"name": "contributors",
"version": "1.0.0",
"description": "This repo holds the `contributors.json` file that is used to load contributor info into the app.",
"main": "index.js",
"dependencies": {},
"devDependencies": {
"ajv-cli": "^3.0.0",
"husky": "^1.3.1",
"prettier": "1.16.4"
},
"scripts": {
"test": "npm run validate && prettier --check contributors.json",
"format": "prettier --write contributors.json",
"validate": "ajv validate -s schema.json -d contributors.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingGardenCommunity/contributors.git"
},
"husky": {
"hooks": {
"pre-commit": "npm run validate && prettier --write contributors.json && git add contributors.json"
}
},
"keywords": [],
"author": "CJ R. <[email protected]> (https://w3cj.now.sh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodingGardenCommunity/contributors/issues"
},
"homepage": "https://github.com/CodingGardenCommunity/contributors#readme"
}