This repository was archived by the owner on May 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.72 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.72 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
{
"private": true,
"workspaces": [
"packages/*"
],
"options": {
"mocha": "--full-trace --require resources/mochaBootload packages/*/src/**/__tests__/**/*-test.js",
"mocha_tdd": "--full-trace --watch --require resources/mochaBootload packages/*/src/**/__tests__/**/*-test.js"
},
"scripts": {
"test": "npm run lint && npm run pretty-check && npm run testonly && npm run check",
"testonly": "lerna run build && babel-node ./node_modules/.bin/_mocha $npm_package_options_mocha",
"t": "npm run testonly",
"lint": "eslint src packages/**/src || (printf '\\033[33mTry: \\033[7m npm run lint -- --fix \\033[0m\\n' && exit 1)",
"lint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"check": "flow check --show-all-errors",
"prepublish": "node resources/prepublish.js",
"pretty": "node resources/pretty.js",
"pretty-check": "node resources/pretty.js --check",
"protoc": "lerna run protoc"
},
"resolutions": {
"eslint-scope": "3.7.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.1.2",
"babel-plugin-check-es2015-constants": "6.22.0",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoped-functions": "6.22.0",
"babel-plugin-transform-es2015-block-scoping": "6.26.0",
"babel-plugin-transform-es2015-classes": "6.24.1",
"babel-plugin-transform-es2015-computed-properties": "6.24.1",
"babel-plugin-transform-es2015-destructuring": "6.23.0",
"babel-plugin-transform-es2015-duplicate-keys": "6.24.1",
"babel-plugin-transform-es2015-function-name": "6.24.1",
"babel-plugin-transform-es2015-literals": "6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-plugin-transform-es2015-object-super": "6.24.1",
"babel-plugin-transform-es2015-parameters": "6.24.1",
"babel-plugin-transform-es2015-shorthand-properties": "6.24.1",
"babel-plugin-transform-es2015-spread": "6.22.0",
"babel-plugin-transform-es2015-template-literals": "6.22.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-regenerator": "6.24.1",
"babel-types": "6.26.0",
"chai": "4.1.2",
"eslint": "4.14.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-dependencies": "2.4.0",
"eslint-plugin-flowtype": "2.40.1",
"eslint-plugin-prefer-object-spread": "1.2.1",
"flow-bin": "0.91.0",
"lerna": "^2.11.0",
"mocha": "4.1.0",
"prettier": "^1.5.3",
"rsocket-rpc-protobuf": "^0.1.5"
}
}