-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
executable file
·46 lines (46 loc) · 1.42 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
{
"name": "index",
"version": "0.0.0",
"private": true,
"description": "A service worker implementation of the behavior defined in a page's App Cache manifest.",
"keywords": [
"appcache",
"service worker",
"sw",
"offline",
"manifest",
"app cache"
],
"author": {
"name": "Jeff Posnick",
"email": "jeffy@google.com",
"url": "https://jeffy.info"
},
"license": "Apache-2.0",
"repository": "googlechromelabs/sw-appcache-behavior",
"bugs": "https://github.com/googlechromelabs/sw-appcache-behavior/issues",
"homepage": "https://github.com/googlechromelabs/sw-appcache-behavior/",
"devDependencies": {
"@typescript-eslint/parser": "^4.23.0",
"chai": "^4.3.4",
"ejs": "^3.1.6",
"eslint": "^7.26.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-header": "^3.1.1",
"express": "^4.17.1",
"idb-keyval": "^5.0.5",
"lerna": "^4.0.0",
"mocha": "^8.4.0",
"puppeteer": "^9.1.1",
"puppeteer-firefox": "^0.5.1"
},
"scripts": {
"build-sw": "cd packages/appcache-polyfill-sw && npm run build && cd -",
"build-window": "cd packages/appcache-polyfill-window && npm run build && cd -",
"build": "npm run build-sw && npm run build-window",
"lint": "eslint --ignore-path .gitignore lib/*.ts packages/**/*.ts tests/*.js",
"publish": "lerna publish",
"test": "mocha --delay tests/test-suite.js",
"test-server": "node tests/server.js"
}
}