-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "ink-broadcast",
"version": "0.3.0",
"description": "Implementation of react-broadcast for ink",
"main": "dist/index.js",
"homepage": "https://github.com/jimmed/ink-broadcast",
"bugs": "https://github.com/jimmed/ink-broadcast/issues",
"repository": {
"url": "https://github.com/jimmed/ink-broadcast",
"type": "git"
},
"author": "Jim O'Brien <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel --out-dir dist src",
"test": "jest src",
"prepublishOnly": "yarn run test && yarn run build"
},
"dependencies": {
"ink": "^0.4.1",
"invariant": "^2.2.2",
"prop-types": "^15.6.0"
},
"peerDependencies": {
"ink": "^0.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"jest": "^22.4.2",
"jest-junit": "^3.6.0"
},
"engines": {
"node": ">=6"
}
}