-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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": "redux-state-machine",
"version": "0.2.3",
"description": "Redux StateMachine reducer",
"main": "dist/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --compilers=js:babel-core/register -r mocha_setup.js \"src/**/*_test.js\"",
"prepublish": "npm run build",
"build": "./node_modules/.bin/babel src --out-dir dist"
},
"keywords": [
"redux",
"fsm",
"javascript-state-machine",
"state machine",
"flux",
"machina"
],
"repository": {
"type": "git",
"url": "https://github.com/realb0t/redux-state-machine.git"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-es2015-classes": "^6.9.0",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-3": "^6.5.0",
"chai": "^3.5.0",
"cors": "^2.7.1",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"mocha": "^2.4.5",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack": "^1.13.0"
},
"author": "Kazantsev Nickolay",
"license": "MIT",
"dependencies": {
"javascript-state-machine": "^2.3.5",
"lodash": "^4.16.2"
}
}