forked from acdlite/recompose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.15 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.15 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "recompose-build",
"private": true,
"author": "Andrew Clark <acdlite@me.com>",
"repository": {
"type": "git",
"url": "git://github.com/acdlite/recompose.git"
},
"license": "MIT",
"scripts": {
"lint": "eslint src",
"test": "ava --concurrency=5",
"test:watch": "npm run test -- --watch",
"release": "babel-node scripts/release.js",
"postinstall": "babel-node scripts/installNestedPackageDeps.js"
},
"devDependencies": {
"ava": "^0.17.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-jsx": "^6.8.0",
"babel-plugin-syntax-trailing-function-commas": "^6.8.0",
"babel-plugin-transform-async-to-generator": "^6.8.0",
"babel-plugin-transform-class-constructor-call": "^6.8.0",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoped-functions": "^6.8.0",
"babel-plugin-transform-es2015-block-scoping": "^6.8.0",
"babel-plugin-transform-es2015-classes": "^6.8.0",
"babel-plugin-transform-es2015-computed-properties": "^6.8.0",
"babel-plugin-transform-es2015-destructuring": "^6.8.0",
"babel-plugin-transform-es2015-for-of": "^6.8.0",
"babel-plugin-transform-es2015-function-name": "^6.8.0",
"babel-plugin-transform-es2015-literals": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.8.0",
"babel-plugin-transform-es2015-parameters": "^6.8.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.8.0",
"babel-plugin-transform-es2015-spread": "^6.8.0",
"babel-plugin-transform-es2015-template-literals": "^6.8.0",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-react-display-name": "^6.8.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.8.0",
"babel-polyfill": "^6.5.0",
"babel-register": "^6.9.0",
"baconjs": "^0.7.84",
"chai": "^3.3.0",
"chalk": "^1.1.1",
"change-case": "^2.3.1",
"codecov": "^1.0.1",
"enzyme": "^2.2.0",
"eslint": "^2.10.2",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"flyd": "^0.2.4",
"globby": "^4.0.0",
"gzip-size-cli": "^1.0.0",
"jsdom": "^8.4.0",
"kefir": "^3.2.3",
"most": "^1.0.2",
"nyc": "^6.4.0",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"readline-sync": "^1.2.21",
"rimraf": "^2.4.3",
"rx": "^4.1.0",
"rxjs": "^5.0.0-beta.9",
"shelljs": "^0.6.0",
"sinon": "^1.17.1",
"webpack": "^1.12.0",
"xstream": "^5.0.5"
},
"devEngines": {
"node": "5.x",
"npm": "3.x"
},
"ava": {
"files": [
"src/**/__tests__/*-test.js"
],
"source": [
"src/**/*.js"
],
"failFast": true,
"require": [
"babel-register",
"./testSetup"
],
"babel": "inherit"
}
}