-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
71 lines (71 loc) · 1.74 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
62
63
64
65
66
67
68
69
70
71
{
"name": "bottle-service",
"description": "Instant web applications restored from ServiceWorker cache",
"main": "index.js",
"version": "0.0.0-semantic-release",
"files": [
"dist/*.js"
],
"scripts": {
"test": "npm run lint",
"lint": "standard src/*.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"build": "cp src/bottle.js dist/ && npm run webpack",
"webpack": "webpack",
"deploy": "grunty grunt-gh-pages gh-pages deploy.json",
"start": "http-server dist -c-1",
"dev-start": "http-server dist -c-1 -p 3006",
"commit": "commit-wizard",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"issues": "git-issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bahmutov/bottle-service.git"
},
"keywords": [
"service",
"worker",
"serviceWorker",
"cache",
"hydrate",
"web",
"performance"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/bottle-service/issues"
},
"homepage": "https://github.com/bahmutov/bottle-service#readme",
"dependencies": {
"caches-storage": "1.1.0",
"http-server": "0.8.5"
},
"devDependencies": {
"git-issues": "1.2.0",
"grunt": "0.4.5",
"grunt-gh-pages": "1.0.0",
"grunty": "0.2.0",
"pre-git": "3.1.1",
"semantic-release": "^4.3.5",
"standard": "5.4.1",
"webpack": "1.12.9"
},
"private": false,
"config": {
"pre-git": {
"commit-msg": [
"simple"
],
"pre-commit": [
"npm run lint"
],
"pre-push": [
"npm run size"
],
"post-commit": [],
"post-merge": []
}
}
}