forked from KVSun/kvsun.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.57 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.57 KB
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
{
"name": "kv-sun",
"version": "0.0.0",
"description": "Kern Valley Sun",
"keywords": [
"kvsun",
"Kern Valley Sun"
],
"author": {
"name": "Chris Zuber",
"email": "shgysk8zer0@gmail.com",
"url": "https://chriszuber.com"
},
"contributors": [],
"homepage": "https://kernvalleysun.com",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/KVSun/kvsun.com"
},
"bugs": {
"url": "https://github.com/KVSun/kvsun.com/issues"
},
"engines": {
"php": ">=5.6",
"npm": ">=4.2"
},
"scripts": {
"build:css": "myth stylesheets/styles/import.css -c stylesheets/styles/styles.css",
"build:js": "webpack",
"build:icons": "svg-sprite-generate -c images/icons.csv -o images/icons.svg",
"build:all": "npm run build:icons && npm run build:css",
"lint:js": "eslint --ignore-path .eslintignore --config .eslintrc js/",
"lint:php": "php unit.php",
"git:fetch": "git fetch --all --prune --tags",
"git:submodules": "git submodule update --init --recursive",
"update-remote": "git submodule update --remote --init --recursive && npm update --save-dev",
"update-packages": "npm run git:submodules && npm run git:fetch && npm run build:all",
"test": "npm run lint:js && npm run lint:php",
"postinstall": "npm run update-packages"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.16.0",
"eslint": "^3.7.1",
"myth": "^1.5.0",
"svg-sprite-generator": "0.0.1",
"svgo": "^0.7.1",
"webpack": "^1.13.2"
}
}