-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.47 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
56
57
58
59
60
{
"name": "local-storage-poorlyfill",
"version": "0.0.0-development",
"description": "in-memory polyfill for local storage",
"main": "dist/local-storage-poorlyfill.js",
"directories": {
"dist": "dist",
"src": "src",
"test": "test"
},
"scripts": {
"lint": "standard",
"build": "gulp transpile",
"test": "gulp runTests",
"semantic-release": "semantic-release"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"repository": {
"type": "git",
"url": "https://github.com/patkub/local-storage-poorlyfill.git"
},
"keywords": [
"local",
"storage",
"polyfill"
],
"author": "Patrick Kubiak <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/patkub/local-storage-poorlyfill/issues"
},
"homepage": "https://github.com/patkub/local-storage-poorlyfill#readme",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.8.3",
"chai": "^4.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-header": "^2.0.9",
"gulp-rollup": "^2.17.0",
"karma": "^5.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-firefox-launcher": "^1.3.0",
"karma-mocha": "^2.0.0",
"karma-sinon": "^1.0.5",
"mocha": "^7.0.1",
"semantic-release": "^17.0.2",
"sinon": "^9.0.0",
"standard": "^14.3.1"
}
}