forked from EmbarkStudios/opensource-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 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
31
32
33
34
35
36
{
"name": "opensource-website",
"version": "1.0.0",
"description": "Hub for Embark's open source efforts",
"main": "script.js",
"scripts": {
"start": "live-server",
"lint": "npm run format-check && npm run stylelint && npm run alex && npm run validate-data",
"format-check": "prettier --check **/*.js",
"format": "prettier --write **/*.js",
"alex": "alex && alex --html",
"stylelint": "stylelint style.css",
"validate-data": "ajv validate -s data-schema.json -d data.json"
},
"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": "^4.0.1",
"alex": "^8.2.0",
"live-server": "^1.2.1",
"prettier": "^2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0"
},
"dependencies": {
"vue": "^2.6.12"
}
}