-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "polymer-bootlicker",
"version": "0.0.13",
"author": "Filipe Araujo <[email protected]>",
"description": "",
"dependencies": {
"babel-preset-es2015": "^6.16.0",
"browser-sync": "^2.17.3",
"del": "^2.2.0",
"eslint-config-google": "^0.6.0",
"gulp-babel": "^6.1.1",
"gulp-cssnano": "^2.0.0",
"gulp-eslint": "^3.0.0",
"gulp-htmlmin": "^3.0.0",
"gulp-i18n-localize": "^1.2.1",
"gulp-imagemin": "^3.0.0",
"gulp-size": "^2.0.0",
"gulp-sourcemaps": "^2.1.1",
"gulp-uglify": "^2.0.0",
"gulp-useref": "^3.0.3",
"lazypipe": "^1.0.1",
"lodash.defaults": "^4.1.0",
"lodash.defaultsdeep": "^4.4.0",
"nyc": "^8.3.1",
"polybuild": "^1.1.0",
"undertaker": "^1.0.0",
"web-component-tester": "^4.3.5"
},
"devDependencies": {
"ava": "^0.16.0",
"coveralls": "^2.11.6",
"nyc": "^8.3.0",
"sinon": "^1.17.2"
},
"files": [
"lib",
"*.js"
],
"license": "ISC",
"main": "lib/index.js",
"scripts": {
"compile": "babel --source-maps -d lib/ src/",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run compile",
"test": "nyc ava test/**/* --verbose --require babel-register"
}
}