-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.48 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "reelm",
"version": "0.2.0",
"description": "Awesome library combining redux, saga and elm",
"main": "index.js",
"author": "tihonove <[email protected]>",
"contributors": [
{
"name": "Eugene Tikhonov",
"email": "[email protected]"
}
],
"homepage": "https://reelm.github.io/",
"license": "WTFPL",
"scripts": {
"compile": "rimraf lib && babel -d lib/ src/",
"prepublish": "npm run compile",
"test": "jasmine JASMINE_CONFIG_PATH=jasmine.json",
"lint": "eslint src tests",
"cover": "istanbul cover ./node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=jasmine.json",
"cover-local": "istanbul cover --report json --report html ./node_modules/jasmine/bin/jasmine.js JASMINE_CONFIG_PATH=jasmine.json",
"report-coverage": "cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"docs:clean": "rimraf docs/_book",
"docs:prepare": "cd docs && gitbook install",
"docs:build": "npm run docs:prepare && cd docs && gitbook build",
"docs:watch": "npm run docs:prepare && cd docs && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd docs && cd _book && git init && git commit --allow-empty -m \"update book\" && touch .nojekyll && git add . && git commit -am \"update book\" && git push [email protected]:reelm/reelm.github.io master --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tihonove/reelm.git"
},
"bugs": {
"url": "https://github.com/tihonove/reelm/issues"
},
"files": [
"lib/",
"src/",
"index.js",
"effects.js",
"fluent.js"
],
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.9.0",
"eslint-config-skbkontur-retail": "^1.0.1",
"eslint-plugin-jasmine": "^1.8.1",
"gitbook-cli": "^2.1.3",
"immutable": "^3.8.1",
"istanbul": "^1.0.0-alpha.2",
"jasmine": "^2.4.1",
"jasmine-collection-matchers": "^0.2.0",
"jasmine-expect": "^2.0.2",
"jasmine-immutable-matchers": "^1.0.1",
"redux": "^3.5.2",
"rimraf": "^2.5.2",
"webpack": "^1.12.14"
},
"engines": {
"node": "*"
},
"keywords": [
"react",
"redux",
"saga",
"elm",
"side effects",
"redux side effects management",
"javascript"
]
}