-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "react-chrome-redux",
"version": "1.3.1",
"description": "A set of utilities for building Redux applications in Google Chrome Extensions.",
"main": "lib/index.js",
"scripts": {
"prepublish": "./node_modules/.bin/babel src --out-dir lib",
"pretest": "./node_modules/.bin/babel src --out-dir lib",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register"
},
"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"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.5",
"babel-core": "^6.22.1",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.3.13",
"mocha": "^2.3.4",
"should": "^8.2.0",
"sinon": "^1.17.2"
}
}