-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.2 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
67
68
69
{
"name": "duke-sakai-skins",
"version": "1.1.0",
"description": "`src` contains the source files for the skins. Final edits are placed here and compiled for deployment",
"main": "index.js",
"config": {
"env": "duke"
},
"scripts": {
"watch": "chokidar \"src/**\" -c \"bin/build.sh {event} {path}\"",
"build": "bash bin/build.sh build",
"build-all": "bash bin/build-all.sh",
"autoprefixer": "postcss -u autoprefixer -r --map",
"fetch-src": "bash bin/fetch-src.sh",
"fonts": "bash bin/fonts.sh",
"create-skin": "bash bin/create-skin.sh",
"!icons": "svgo -f src/images/icons -o dist/images/icons && svg-sprite-generate -d dist/images/icons -o dist/images/icons/sprite.svg",
"imagemin": "bash bin/imagemin.sh",
"lint": "bash bin/lint.sh",
"scss": "bash bin/scss.sh",
"serve": "bash bin/serve.sh",
"serve-all": "bash bin/serve-all.sh",
"uglify": "bash bin/uglify.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dukelearninginnovation/duke-sakai-skins.git"
},
"keywords": [],
"author": "profmikegreene",
"license": "ECL",
"bugs": {
"url": "https://github.com/dukelearninginnovation/duke-sakai-skins/issues"
},
"homepage": "https://github.com/dukelearninginnovation/duke-sakai-skins#readme",
"devDependencies": {
"autoprefixer": "^6.3.6",
"browser-sync": "^2.26.7",
"eslint": "^6.6.0",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.0",
"eslint-plugin-standard": "^1.3.2",
"fstream": ">=1.0.12",
"gulp-cli": "^2.2.0",
"gulp-sass": "^4.0.2",
"imagemin-cli": "^5.0.0",
"lodash": "^4.17.19",
"lodash.template": ">=4.5.0",
"mkdirp": "^0.5.1",
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"npm-run-all": "^2.1.1",
"onchange": "^6.1.0",
"postcss-cli": "^6.1.3",
"rimraf": "^2.7.1",
"stylelint": "^10.1.0",
"stylelint-config-recommended": "^2.2.0",
"stylelint-config-standard": "^18.3.0",
"svg-sprite-generator": "0.0.7",
"svgo": "^1.3.2",
"tar": "^4.4.13"
},
"dependencies": {
"chokidar-cli": "2.1.0",
"google-closure-compiler": "^20190729.0.0",
"terser": "3.14.1",
"uglify-es": "^3.3.9"
}
}