-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
30 lines (30 loc) · 1.08 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
{
"name": "opensource-website",
"version": "1.0.0",
"description": "Hub for Embark's open source efforts",
"scripts": {
"lint": "npm run format-check && npm run stylelint && npm run alex && npm run validate-data",
"format-check": "prettier --check **/*.js",
"format": "prettier --write **/*.js",
"stylelint": "stylelint ./static/style.css",
"validate-data": "ajv validate -s ./static/data/data-schema.json -d ./static/data/data.json",
"alex": "alex && alex --html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmbarkStudios/opensource-website.git"
},
"author": "EmbarkStudios",
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/EmbarkStudios/opensource-website/issues"
},
"homepage": "https://github.com/EmbarkStudios/opensource-website#readme",
"devDependencies": {
"ajv-cli": "^5.0.0",
"alex": "^11.0.0",
"prettier": "^2.6.2",
"stylelint": "^14.6.1",
"stylelint-config-standard": "^25.0.0"
}
}