forked from Polymer/polymer-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 977 Bytes
/
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
{
"name": "polymer-starter-kit",
"license": "BSD-3-Clause",
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"browser-sync": "^2.18.8",
"connect-history-api-fallback": "^1.3.0",
"del": "^2.2.2",
"eslint": "^3.12.0",
"eslint-config-es2015": "^1.1.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-html": "^1.7.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-crisper": "^1.1.0",
"gulp-if": "^2.0.2",
"gulp-sourcemaps": "^2.4.0",
"merge-stream": "^1.0.1",
"polymer-build": "^0.8.2",
"web-component-tester": "^5.0.1",
"yargs": "^6.6.0"
},
"scripts": {
"lint": "eslint . --ext js,html --ignore-path .gitignore",
"test": "npm run lint && gulp clean && gulp test:local",
"start": "gulp serve",
"clean": "gulp clean",
"build": "npm run clean && gulp build --bundled",
"build:unbundled": "npm run clean && gulp build"
},
"dependencies": {
"redux": "^3.6.0"
}
}