forked from tshaddix/webext-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.71 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
{
"name": "webext-redux",
"version": "2.1.9",
"description": "A set of utilities for building Redux applications in Web Extensions.",
"main": "lib/index.js",
"typings": "./index.d.ts",
"scripts": {
"umd-build": "rollup -c",
"build": "./node_modules/.bin/babel src --out-dir lib && npm run umd-build",
"lint-src": "./node_modules/.bin/eslint src/**/*.js",
"lint-test": "./node_modules/.bin/eslint test/**/*.js",
"lint": "npm run lint-src && npm run lint-test",
"prepublishOnly": "npm run build",
"pretest": "./node_modules/.bin/babel src --out-dir lib",
"test-run": "./node_modules/.bin/mocha --require @babel/register --recursive",
"test": "npm run lint && npm run test-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tshaddix/webext-redux.git"
},
"author": "Tyler Shaddix",
"license": "MIT",
"bugs": {
"url": "https://github.com/tshaddix/webext-redux/issues"
},
"homepage": "https://github.com/tshaddix/webext-redux#readme",
"dependencies": {
"lodash.assignin": "^4.2.0",
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-transform-async-to-generator": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/register": "^7.0.0",
"babel-eslint": "^7.2.0",
"eslint": "^4.18.2",
"mocha": "^5.2.0",
"redux": "^4.0.4",
"rollup": "^1.22.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"should": "^13.2.1",
"sinon": "^6.0.0"
},
"peerDependencies": {
"redux": ">= 3 <= 4"
}
}