-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.81 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
55
56
57
{
"name": "modular-redux-thunk",
"version": "1.0.0-beta6",
"description": "A ducks-inspired package to help organize actions, reducers, and selectors together.",
"main": "lib/index.js",
"scripts": {
"build": "npm test && npm run clean:build && babel src --presets es2015 --out-dir lib && npm run test:build",
"!!build:specs": "npm run build && babel specs --presets es2015,react --out-dir lib/specs",
"clean:build": "rm -rf lib",
"test": "BABEL_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register ./specs/src/**/*.spec.js",
"test:build": "./node_modules/.bin/mocha ./specs/build/**/*.spec.js",
"!!test:cover": "./node_modules/.bin/istanbul/ cover node_modules/.bin/_mocha -- ./lib/specs/**/*.spec.js",
"test:watch": "nodemon -x \"npm test\" -e js -w src -w specs"
},
"repository": {
"type": "git",
"url": "https://github.com/benbeadle/modular-redux-thunk.git"
},
"keywords": [
"redux",
"thunk",
"ducks",
"reducers",
"actions",
"selectors",
"store"
],
"author": "Ben Beadle <ben@benbeadle.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/benbeadle/modular-redux-thunk/issues"
},
"homepage": "https://github.com/benbeadle/modular-redux-thunk",
"dependencies": {
"redux-freeze": "^0.1.4",
"redux-thunk": "^2.1.0",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"enzyme": "^2.4.1",
"eslint": "^3.2.2",
"istanbul": "^0.4.4",
"mocha": "^3.0.1",
"react": "^15.3.0",
"react-addons-test-utils": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"sinon": "^1.17.5",
"warning": "^3.0.0"
}
}