-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
65 lines (65 loc) · 1.82 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
{
"name": "async-reactor",
"version": "1.2.2",
"keywords": [
"react",
"stateless",
"functionnal",
"components",
"async",
"await",
"code-splitting",
"render"
],
"description": "Render async Stateless Functional Components",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"lint": "eslint src test",
"test": "npm run build && mocha --compilers js:babel-register --require jsdom-global/register",
"build": "BABEL_ENV=production babel --out-dir lib src/",
"watch": "babel --out-dir lib src/ --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/xtuc/async-reactor.git"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-babili": "0.0.12",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"enzyme": "^2.8.0",
"eslint": "^3.13.1",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-flowtype-errors": "^3.0.3",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.43.1",
"jsdom": "^9.12.0",
"jsdom-global": "^2.1.1",
"mocha": "^3.2.0",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.3",
"react-test-renderer": "^15.5.4",
"sinon": "^2.2.0",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"author": "Sven SAULEAU",
"dependencies": {
"react": "^15.5.3"
}
}