forked from superuserdev/superuserdev.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.06 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
66
{
"name": "SuperUserDev",
"version": "0.1.0",
"description": "Homepage for SuperUserDev Org on GitHub",
"keywords": [
"jekyll",
"SuperUserDev"
],
"author": {
"name": "Chris Zuber",
"email": "chris@chriszuber.com",
"url": "https://chriszuber.com"
},
"contributors": [],
"homepage": "",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/superuserdev/superuserdev.github.io"
},
"bugs": {
"url": "https://github.com/superuserdev/superuserdev.github.io/issues"
},
"engines": {
"npm": ">=3.5"
},
"scripts": {
"build": "npm run build:icons && npm run build:css && npm run build:js",
"build:css": "postcss css/index.css -o css/index.min.css",
"build:js": "rollup -c",
"build:icons": "svg-sprite-generate -c img/icons.csv -o img/icons.svg",
"lint": "npm run lint:all",
"lint:all": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint 'css/**/*.css'",
"watch:css": "postcss css/index.css -o css/index.min.css -w",
"watch:js": "rollup -c -w",
"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",
"update-packages": "npm run git:submodules && npm run git:fetch && npm run build",
"test": "npm run lint",
"start": "jekyll serve",
"postinstall": "npm run git:submodules && npm run build"
},
"devDependencies": {
"eslint": "^4.14.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-babel": "^4.1.2",
"stylelint": "^8.4.0",
"stylelint-config-recommended": "^2.0.1",
"stylelint-config-standard": "^18.0.0"
},
"dependencies": {
"cssnano": "^3.10.0",
"postcss": "^6.0.14",
"postcss-cli": "^4.1.1",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-load-config": "^1.2.0",
"postcss-url": "^7.3.0",
"rollup": "^0.53.1",
"rollup-plugin-uglify": "^2.0.1",
"svg-sprite-generator": "0.0.7"
}
}