-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
38 lines (38 loc) · 1.38 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
{
"name": "5etools",
"author": "TheGiddyLimit",
"version": "1.44.0",
"license": "MIT",
"description": "A site dedicated to making playing games with your friends as easy as possible.",
"scripts": {
"dev-server": "autoreload-server -r **/*.{html,css,js,png,jpg}",
"version-bump": "npm version -m \"chore(version): bump\"",
"gen-index": "node node/generate-search-index.js",
"uglifyjs": "uglifyjs",
"test:js": "eslint js node test",
"test:styles": "stylelint scss/style.scss",
"test:data": "node test/alltests.js",
"test": "npm run test:js && npm run test:styles && npm run test:data",
"build:css": "node-sass --source-map=true --output-style=compressed scss/style.scss css/style.css && postcss ./css/style.css --use autoprefixer -r",
"build:deploy:dev": "bash build/deploy-dev.sh",
"build:deploy:prod": "bash build/deploy-prod.sh",
"build": "npm run gen-index && npm run build:css",
"preversion": "npm test",
"version": "node node/version-bump.js"
},
"repository": "TheGiddyLimit/TheGiddyLimit.github.io",
"devDependencies": {
"autoprefixer": "^8.4.1",
"eslint": "^4.19.1",
"eslint-plugin-json": "^1.2.0",
"jsonschema": "1.2.0",
"node-sass": "^4.9.0",
"postcss-cli": "^5.0.0",
"simple-autoreload-server": "^0.2.7",
"simple-git": "^1.92.0",
"stylelint": "^9.2.0",
"stylelint-config-sass-guidelines": "^5.0.0",
"uglify-es": "^3.3.10"
},
"dependencies": {}
}