-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "ramen-collection",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"browser-sync": "^2.23.3",
"child_process": "^1.0.2",
"core-js": "^2.5.3",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.0",
"eslint-plugin-html": "^2.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-data": "^1.3.1",
"gulp-exec": "^3.0.1",
"gulp-htmlmin": "^4.0.0",
"gulp-jsonminify": "^1.1.0",
"gulp-recursive-folder": "^0.9.4",
"gulp-rename": "^1.2.2",
"gulp-run": "^1.7.1",
"gulp-sass": "^3.1.0",
"gulp-shell": "^0.6.5",
"gulp-template": "^5.0.0",
"gulp-uglify": "^3.0.0",
"recursive-readdir": "^2.2.1"
},
"scripts": {
"lint": "npm run lint:javascript",
"lint:javascript": "eslint . --ext js,html --ignore-path .gitignore",
"test": "polymer test",
"test:integration": "polymer build # test that psk builds without error with the CLI",
"build": "bower update && polymer build",
"serve": "polymer serve",
"watch": "browser-sync start --proxy 127.0.0.1:8081 --files 'src/**/*.html, src/**/*.js, images/*' --online false --open 'false'"
},
"dependencies": {
"babel-core": "^6.26.0",
"gulp-replace": "^0.6.1"
}
}