forked from CityOfBoston/boston.gov-d7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "boston",
"author": "You!",
"description": "The node.js requirements to build this project.",
"version": "1.0.0",
"repository": {},
"devDependencies": {
"breakpoint-sass": "^2.7.0",
"browser-sync": "^2.12.8",
"chroma-sass": "^1.2.4",
"compass-mixins": "^0.12.10",
"compass-options": "^0.1.1",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.0",
"gulp-css-globbing": "^0.1.8",
"gulp-debug": "^2.1.2",
"gulp-if": "^2.0.1",
"gulp-imagemin": "^3.0.1",
"gulp-jshint": "^2.0.1",
"gulp-load-plugins": "^1.2.4",
"gulp-rename": "^1.2.2",
"gulp-sass": "2.0.x",
"gulp-sass-lint": "^1.1.1",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"jshint": "^2.9.3",
"kss": "^2.4.0",
"node-sass": "3.4.1",
"node-sass-import-once": "1.2.x",
"run-sequence": "^1.2.1",
"susy": "^2.2.12",
"typey": "1.0.0-beta.8"
},
"engines": {
"node": ">=5.6.0"
},
"private": true,
"//": "The postinstall script is needed to work-around this Drupal core bug: https://www.drupal.org/node/2329453",
"scripts": {
"install-dependencies": "npm install",
"uninstall-dependencies": "rm -r node_modules",
"postinstall": "find node_modules/ -name '*.info' -type f -delete",
"test": "gulp && git status | grep 'working directory clean' >/dev/null || (echo 'Please commit all changes generated by building'; exit 1)",
"build": "gulp",
"build:boston": "gulp",
"build:boston_public": "gulp --public",
"build:boston_hub": "gulp --hub",
"watch": "gulp watch",
"serve": "gulp serve"
}
}