-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
49
50
51
52
53
54
55
{
"name": "proxy-storage",
"version": "2.3.2",
"description": "Normalizes the API for cookies, and localStorage/sessionStorage",
"author": "David Rivera <[email protected]>",
"main": "src/proxy-storage.js",
"module": "src/proxy-storage.js",
"browser": "dist/proxy-storage.min.js",
"unpkg": "dist/proxy-storage.min.js",
"keywords": [
"storage",
"cookie",
"webStorage",
"web storage",
"localStorage",
"sessionStorage",
"memoryStorage",
"javascript"
],
"repository": {
"url": "[email protected]:jherax/proxy-storage.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/jherax/proxy-storage/issues"
},
"homepage": "https://github.com/jherax/proxy-storage#readme",
"scripts": {
"eslint": "eslint src || true",
"build": "webpack --bail --config webpack/build.js"
},
"engines": {
"node": ">=6.0"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.16",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"webpack": "^3.5.5"
},
"babel": {
"presets": [
"es2015",
"stage-2"
]
}
}