-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1021 Bytes
/
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
{
"name": "@akoenig/adhoc",
"description":
"Opinionated higher-order component for establishing ad-hoc stream-based unidirectional data flows.",
"version": "2.0.2",
"author": "André König <andre.koenig@gmail.com>",
"main": "./dist/index.js",
"license": "SEE LICENSE IN license.md",
"scripts": {
"compile": "babel --presets=env ./src --out-dir ./dist",
"test": "npm run compile && jest ./dist/*.spec.js --coverage",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git@github.com:akoenig/adhoc.git"
},
"peerDependencies": {
"recompose": "^0.25.0",
"xstream": "^10.9.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "^1.6.0",
"enzyme": "^2.9.1",
"jest": "^21.1.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"recompose": "^0.25.0",
"xstream": "^10.9.0"
},
"files": ["dist"]
}