forked from tshaddix/webext-redux
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.43 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
{
"name": "react-chrome-redux",
"version": "2.0.0-alpha.1",
"description": "A set of utilities for building Redux applications in Google Chrome 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",
"prepublish": "./node_modules/.bin/babel src --out-dir lib",
"pretest": "./node_modules/.bin/babel src --out-dir lib",
"test-run": "./node_modules/.bin/mocha --compilers js:babel-core/register",
"test": "npm run lint && npm run test-run",
"prepare": "npm run prepublish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tshaddix/react-chrome-redux.git"
},
"author": "Tyler Shaddix",
"license": "MIT",
"bugs": {
"url": "https://github.com/tshaddix/react-chrome-redux/issues"
},
"homepage": "https://github.com/tshaddix/react-chrome-redux#readme",
"dependencies": {
"lodash": "^4.5.1",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-core": "^6.22.1",
"babel-eslint": "^7.2.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-1": "^6.24.1",
"eslint": "^3.17.1",
"mocha": "^2.3.4",
"should": "^8.2.0",
"sinon": "^1.17.2"
}
}