forked from tshaddix/webext-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.38 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
43
44
{
"name": "webext-redux",
"version": "2.0.1",
"description": "A set of utilities for building Redux applications in Web Extensions.",
"main": "lib/index.js",
"typings": "./index.d.ts",
"scripts": {
"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": "./node_modules/.bin/babel src --out-dir lib",
"pretest": "./node_modules/.bin/babel src --out-dir lib",
"test-run": "./node_modules/.bin/mocha --require @babel/register",
"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",
"redux": "^3.7.2"
},
"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": "^3.17.1",
"mocha": "^5.2.0",
"should": "^13.2.1",
"sinon": "^6.0.0"
}
}