-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.98 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.98 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
53
54
{
"name": "hey.js",
"version": "1.1.5",
"main": "dist/js/heyModal.min.js",
"repository": {
"url": "git@github.com:jayfreestone/hey.git",
"type": "git"
},
"author": "Jay Freestone <mail@jayfreestone.com>",
"license": "MIT",
"scripts": {
"precommit": "npm run build && git add dist",
"build": "npm run build:css && npm run build:js && npm run build:images",
"build:images": "imagemin src/img/* -o dist/img",
"build:css": "node-sass --output-style compressed -o dist/css src/sass/ && postcss -u autoprefixer -r dist/css/*.css",
"build:js": "NODE_ENV=production ./node_modules/.bin/rollup -c",
"buildDev:js": "./node_modules/.bin/rollup -c",
"watch": "parallelshell 'npm run build' 'npm run watch:all' 'npm run browsersync'",
"browsersync": "browser-sync start --server --files 'dist/js/*.js, dist/css/*.css'",
"watch:all": "parallelshell 'npm run watch:images' 'npm run watch:css' 'npm run watch:js'",
"watch:images": "onchange 'src/img/*' -- npm run build:images",
"watch:css": "onchange 'src/sass/*.scss' -- npm run build:css",
"watch:js": "./node_modules/.bin/rollup -c -w"
},
"dependencies": {
"assignment": "^2.2.1",
"autoprefixer": "^6.7.6",
"babel-core": "^6.22.1",
"babel-preset-es2015-rollup": "^3.0.0",
"browser-sync": "^2.18.8",
"custom-event-polyfill": "^0.3.0",
"debug": "^2.6.1",
"husky": "^0.13.2",
"imagemin-cli": "^3.0.0",
"node-sass": "^4.4.0",
"normalize.css": "^5.0.0",
"onchange": "^3.2.1",
"parallelshell": "^3.0.0",
"postcss-cli": "^3.0.0-beta",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
},
"devDependencies": {
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0"
}
}