forked from ustbhuangyi/storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "good-storage",
"version": "1.1.0",
"description": "a storage lib which support sessionStorage and localStorage with the same api",
"module": "dist/storage.esm.js",
"main": "dist/storage.js",
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js --port 9090 --inline --hot --content-base ./demo --host 0.0.0.0",
"build": "node build/build.js"
},
"keywords": [
"store",
"html5"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ustbhuangyi/storage.git"
},
"author": "ustbhuangyi",
"license": "MIT",
"bugs": {
"url": "https://github.com/ustbhuangyi/storage/issues"
},
"homepage": "https://github.com/ustbhuangyi/storage#readme",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.5.0",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.5.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"eslint": "^2.10.2",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.3.0",
"eslint-plugin-html": "^1.3.0",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-replace": "^2.0.0",
"rollup-watch": "^4.3.1",
"uglify-js": "^3.1.2"
}
}