-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
83 lines (83 loc) · 2.58 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
79
80
81
82
83
{
"name": "tanok",
"version": "2.0.9",
"description": "Lightweight pattern for React+Rx.js front-end applications. Written under heavy impression of Elm Architecture",
"main": "lib/tanok.js",
"scripts": {
"prepublish": "npm run test",
"pretest": "npm run build",
"build": "node rollup.js",
"docs:clean": "rm -rf _book/*",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build",
"docs:watch": "gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cp CNAME _book && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && git add . && git commit -am 'update book' && git push [email protected]:brabadu/tanok gh-pages --force",
"prebuild": "rm -rf lib/*",
"test": "nyc --reporter=html --reporter=text mocha --recursive --compilers js:babel-register --require ./test/helpers.js --require ./test/dom.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/brabadu/tanok.git"
},
"keywords": [
"rxjs",
"reactjs",
"flux",
"spa",
"elmlang"
],
"author": {
"name": "Boryslav Larin"
},
"contributors": [
"Dmitry Sadkovoy",
"Valeriy Morkovyn",
"Anton Verinov <[email protected]>",
"Dmitry Zhuribeda"
],
"license": "MIT",
"peerDependencies": {
"prop-types": "*",
"react": "*",
"react-dom": "*",
"@evo/rx": "^4.1.9"
},
"devDependencies": {
"@evo/rx": "^4.1.9",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-messages": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-types": "^6.26.0",
"coveralls": "^3.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.6",
"expect": "^22.4.3",
"invariant": "^2.2.2",
"jsdom": "^11.12.0",
"just-extend": "^1.1.22",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"sinon": "^4.0.0",
"webpack": "^1.15.0"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"hoist-non-react-statics": "^2.3.1"
},
"false": {}
}