-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.4 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
{
"name": "poke_world",
"version": "1.0.0",
"description": "Ash explores a 2D world catching poke (monsters).",
"scripts": {
"postinstall": "npm run build",
"build": "npm-run-all lint css",
"css": "npm-run-all css:precompile css:autoprefix",
"css:autoprefix": "postcss --use autoprefixer --replace src/global.css",
"css:precompile": "node-sass --include-path src/vendor --output-style expanded --output src src/sass/global.scss",
"lint": "npm-run-all --parallel lint:*",
"lint:css": "stylelint \"src/**/*.scss\"",
"lint:js": "eslint --ignore-pattern vendor src",
"lint:html": "html-validator --verbose --file src/poke.htm",
"watch:css": "npm run css && onchange \"src/**/*.scss\" -- npm-run-all css",
"watch:lint": "npm run lint && onchange \"src/**/*.{scss|html|js}\" -- npm run lint"
},
"repository": {
"type": "git",
"url": "https://github.com/Armfoot/poke_world.git"
},
"keywords": [
"poke",
"world",
"Ash",
"catch"
],
"author": "Armfoot",
"license": "Apache 2.0",
"readmeFilename": "README.md",
"devDependencies": {
"autoprefixer": "^6.7.5",
"eslint": "^3.16.1",
"html-validator-cli": "^3.1.0",
"node-sass": "^4.5.0",
"npm-run-all": "^4.0.1",
"onchange": "^3.2.1",
"postcss-cli": "^2.6.0",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0"
},
"engines": {
"node": "^6.11"
}
}