-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "proxy-storage",
"version": "1.0.4",
"description": "Storage mechanism that implements the Web Storage interface",
"author": "David Rivera <jherax@gmail.com>",
"main": "dist/proxy-storage.js",
"keywords": [
"storage",
"cookie",
"sessionStorage",
"localStorage",
"web storage",
"javascript"
],
"repository": {
"url": "git@github.com:jherax/proxy-storage.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/jherax/proxy-storage/issues"
},
"homepage": "https://github.com/jherax/proxy-storage#readme",
"scripts": {
"build": "webpack --bail && webpack --config webpack.uglify.config.js",
"eslint": "eslint src || true"
},
"engines": {
"node": ">=6.0",
"npm": ">=3.3 <4"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"clean-webpack-plugin": "^0.1.14",
"eslint": "^3.9.0",
"eslint-config-google": "^0.7.0",
"eslint-loader": "^1.6.1",
"webpack": "^1.13.3",
"webpack-validator": "^2.2.9"
},
"babel": {
"presets": [
"es2015"
]
}
}