-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.62 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
56
57
58
59
60
61
{
"name": "steal-serviceworker",
"version": "1.0.0",
"description": "A steal-tool plugin for creating a serviceworker",
"main": "lib/main.js",
"scripts": {
"preversion": "npm run build && npm test",
"version": "git commit -am \"Update version number\" && git checkout -b release",
"postversion": "git push --tags && git checkout master && git branch -D release && git push",
"test": "npm run test:es5 && npm run test:es6",
"test:es5": "mocha test/test.js",
"test:es6": "cross-env NODE_ENV=test nyc mocha test/test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "babel src -d lib",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"keywords": [
"stealjs",
"steal-tools",
"serviceworker"
],
"author": "Julian Kern",
"license": "MIT",
"dependencies": {
"es6-promisify": "^5.0.0",
"lodash.template": "^4.4.0",
"sw-precache": "^5.2.0",
"uglify-js": "^3.0.28",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.1",
"coveralls": "^3.0.0",
"cross-env": "^5.0.5",
"is-there": "^4.4.2",
"mocha": "^4.0.0",
"nyc": "^11.2.1",
"steal": "^1.5.8",
"steal-tools": "^1.8.4"
},
"nyc": {
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"files": [
"lib/index.js",
"templates/"
]
}