This repository has been archived by the owner on Apr 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"name": "react-cli-renderer",
"version": "1.5.0",
"main": "lib/index.js",
"files": [
"lib"
],
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"chalk": "^2.4.1",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-flowtype": "^3.1.4",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"flow-bin": "^0.89.0",
"jest": "^23.6.0",
"jest-runner-eslint": "^0.7.1",
"prettier": "^1.14.3",
"react": "^16.6.0"
},
"scripts": {
"build": "babel src/ -d lib/ --ignore '*/__tests__/*' && cp src/index.js.flow lib/",
"debug": "node --inspect node_modules/.bin/jest --runInBand",
"demo": "svg-term --command 'node lib/demo.js' --out .github/demo.svg --window --from 50 --to 5000 --term hyper --profile hyper-chesterish",
"prepublish": "npm run build",
"test": "jest"
},
"dependencies": {
"ansi-escapes": "^3.1.0",
"intercept-stdout": "^0.1.2",
"react-reconciler": "^0.17.2",
"strip-ansi": "^5.0.0",
"wcwidth": "^1.0.1",
"wrap-ansi": "^4.0.0"
},
"peerDependencies": {
"react": "^16.4.0"
}
}