forked from extend-chrome/storage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.25 KB
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
{
"name": "@bumble/storage",
"version": "0.2.1",
"description": "This is a wrapper for the Chrome Extension Storage API that adds promises and functional set transactions similar to the React `this.setState` API. Functional set transactions make it easy to use the Chrome Storage API to share and manage state between different contexts in a Chrome Extension.",
"repository": "bumble-org/storage",
"license": "MIT",
"author": "<jacksteamdev@gmail.com>",
"files": [
"lib",
"index.d.ts"
],
"main": "lib/index-cjs.js",
"module": "lib/index-esm.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"test": "jest",
"preversion": "npm run build",
"postversion": "git push && npm publish"
},
"jest": {
"setupFilesAfterEnv": [
"./tests/jest.setup.js"
]
},
"dependencies": {
"@bumble/chrome-rxjs": "https://github.com/nikage/events-rxjs#v0.5.0",
"@bumble/timeout": "^0.1.0",
"chrome-promise": "^3.0.5",
"rxjs": "^6.5.2"
},
"devDependencies": {
"@babel/preset-env": "^7.5.5",
"eslint": "^5.16.0",
"eslint-plugin-jsdoc": "^4.8.4",
"jest": "^24.8.0",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"rollup": "^0.68.0",
"sinon-chrome": "^2.3.2"
}
}