-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.04 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.04 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
{
"name": "remonade",
"version": "2.0.0",
"main": "index.js",
"license": "MIT",
"bin": {
"remonade": "dist/remonade.js",
"remote-chokidar": "dist/remote-chokidar.js"
},
"scripts": {
"cli": "node -r babel-register libs/cli.js",
"example": "node -r babel-register examples/example.js",
"build": "gulp libs",
"test": "NODE_ENV=test [ \"true\" = \"$CI\" ] && yarn jest || yarn local:jest",
"jest": "jest && codecov",
"local:jest": "jest"
},
"moduleRoots": [
"libs"
],
"jest": {
"moduleNameMapper": {
"^helpers/(.+)": "<rootDir>/libs/helpers/$1"
},
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"beeper": "^1.1.1",
"codecov": "^2.3.0",
"eslint": "^4.5.0",
"eslint-config-xo": "^0.18.2",
"eslint-config-xo-react": "^0.13.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.59.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-cached": "^1.1.1",
"gulp-plumber": "^1.1.0",
"gulp-sourcemaps": "^2.6.1",
"jest": "^20.0.4",
"pretty-error": "^2.1.1"
},
"dependencies": {
"arrify": "^1.0.1",
"async-exit-hook": "^2.0.1",
"chokidar": "^1.7.0",
"execa": "^0.8.0",
"ink": "^0.3.1",
"interpret": "^1.0.4",
"liftoff": "^2.3.0",
"lodash-decorators": "^4.4.1",
"lodash.chunk": "^4.2.0",
"lodash.debounce": "^4.0.8",
"minimist": "^1.2.0",
"p-series": "^1.0.0",
"ramda": "^0.24.1",
"react": "^15.6.1",
"rsync": "^0.6.1",
"ssh2": "^0.5.5",
"term-size": "^1.2.0",
"tmp": "^0.0.33",
"yargs": "^8.0.2"
}
}