forked from hindmost/reduxed-chrome-storage
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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": "reduxed-chrome-storage",
"version": "1.0.12",
"description": "Redux interface to chrome.storage, the only way to get Redux working in event-driven (non-persistent) Chrome extensions",
"license": "MIT",
"repository": "github:hindmost/reduxed-chrome-storage",
"bugs": "https://github.com/hindmost/reduxed-chrome-storage/issues",
"keywords": [
"redux",
"chrome",
"extension",
"chrome-extension",
"storage",
"chrome-storage",
"store",
"state"
],
"main": "lib/index.umd.js",
"module": "lib/index.esm.js",
"files": [
"lib"
],
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.isequal": "^4.5.0",
"lodash.mergewith": "^4.6.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.0.0",
"lodash": "^4.17.15",
"mocha": "^7.1.2",
"redux": "^4.0.5",
"reify": "^0.20.12",
"rollup": "^2.10.0",
"@rollup/plugin-buble": "^0.21.0",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"rollup-plugin-terser": "^5.3.0",
"sinon": "^9.0.0"
},
"scripts": {
"prebuild": "npm run lint",
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint src",
"lint:test": "eslint test",
"pretest": "npm run lint:test",
"test": "mocha -r reify",
"prepublishOnly": "npm run build"
}
}