forked from RyotaSugawara/serviceworker-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "@jacobmarshall/serviceworker-storage",
"version": "0.1.0",
"description": "localStorage like storage in ServiceWorker",
"homepage": "https://github.com/jacobmarshall-pkg/serviceworker-storage",
"repository": {
"type": "git",
"url": "https://github.com/jacobmarshall-pkg/serviceworker-storage"
},
"main": "lib/index.js",
"files": [
"lib"
],
"directories": {
"test": "test/"
},
"author": "ryo_suga",
"contributors": [
"Jacob Marshall <[email protected]> (https://jacobmarshall.co)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jacobmarshall-pkg/serviceworker-storage/issues"
},
"scripts": {
"build": "NODE_ENV=production babel src --out-dir lib --source-maps inline",
"watch": "babel src --out-dir lib --watch --source-maps inline",
"test": "NODE_ENV=development karma start",
"prepublish": "npm run test && npm run build"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-espower": "^2.3.1",
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"karma": "^1.2.0",
"karma-browserify": "^5.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.0.1",
"mocha": "^3.0.2",
"power-assert": "^1.4.1",
"watchify": "^3.7.0"
}
}