forked from EntropiaFox/astranauta.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.75 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
47
48
49
50
51
52
53
{
"name": "5etools",
"author": "TheGiddyLimit",
"version": "1.80.0",
"license": "MIT",
"description": "A site dedicated to making playing games with your friends as easy as possible.",
"scripts": {
"version-bump": "npm version -m \"chore(version): bump\"",
"gen-all": "node node/generate-all.js",
"clean-jsons": "node node/clean-jsons.js",
"minify": "minify",
"test:js": "eslint js node test",
"test:styles": "stylelint scss/*.scss",
"test:data": "node test/test-all.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/main.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 clean-jsons && npm run gen-all && npm run build:css",
"preversion": "npm test",
"version": "node node/version-bump.js",
"serve:dev": "http-server -c-1 --cors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheGiddyLimit/TheGiddyLimit.github.io.git"
},
"devDependencies": {
"ajv": "^6.10.2",
"autoprefixer": "^9.6.1",
"babel-minify": "^0.5.0",
"eslint": "^6.0.1",
"http-server": "^0.11.1",
"node-sass": "^4.12.0",
"postcss-cli": "^6.1.3",
"postcss-syntax": "^0.36.2",
"probe-image-size": "^4.1.1",
"readline-sync": "^1.4.9",
"simple-git": "^1.121.0",
"stylelint": "^10.1.0",
"stylelint-config-sass-guidelines": "^6.0.0"
},
"dependencies": {},
"bugs": {
"url": "https://github.com/TheGiddyLimit/TheGiddyLimit.github.io/issues"
},
"homepage": "https://github.com/TheGiddyLimit/TheGiddyLimit.github.io#readme",
"main": ".eslintrc.js",
"directories": {
"lib": "lib",
"test": "test"
}
}