-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.66 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "play3rdstrike",
"version": "1.0.0",
"description": "It's a good game",
"license": "MIT",
"scripts": {
"build": "npm-run-all --serial prettier clean --parallel build:html build:css --serial build:assets",
"build:assets": "ncp src/assets/ dist/assets/ && ncp CNAME dist/CNAME",
"build:css": "postcss src/css/style.css -o dist/css/style.css",
"build:html": "html-minifier --config-file html-minifier-config.json --file-ext html --input-dir src --output-dir dist",
"clean": "rimraf dist",
"deploy": "npm run build && gh-pages -d dist",
"dev": "npm start",
"prettier": "prettier --write \"**/*.{css,md}\"",
"start": "browser-sync start",
"test": "echo \"Play 3rd Strike\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emyarod/play3rdstrike.git"
},
"keywords": [
"street",
"fighter",
"3",
"3rd",
"strike"
],
"author": "emyarod",
"bugs": {
"url": "https://github.com/emyarod/play3rdstrike/issues"
},
"homepage": "https://www.play3rdstrike.com",
"devDependencies": {
"autoprefixer": "^10.2.6",
"browser-sync": "^2.26.10",
"cssnano": "^5.0.6",
"gh-pages": "^3.1.0",
"html-minifier": "^4.0.0",
"ncp": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.5",
"postcss-cli": "^8.3.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2"
},
"browserslist": "last 4 versions",
"prettier": {
"printWidth": 80
},
"postcss": {
"plugins": {
"autoprefixer": {},
"cssnano": {
"safe": true
}
}
},
"browser-sync": {
"open": false,
"port": 5001,
"server": "src",
"watch": true
}
}