-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 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
42
43
44
45
46
47
48
49
{
"private": true,
"author": "Brian Cavalier <[email protected]>",
"license": "MIT",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"test": "npm run build && lerna run test",
"build": "lerna run --parallel build"
},
"devDependencies": {
"@babel/cli": "7.15.7",
"@babel/core": "7.15.8",
"@babel/plugin-proposal-object-rest-spread": "7.15.6",
"@babel/preset-env": "7.15.8",
"@babel/preset-flow": "7.14.5",
"@babel/register": "7.15.3",
"babel-eslint": "10.1.0",
"eslint-plugin-flowtype": "3.13.0",
"flow-bin": "0.135.0",
"flow-copy-source": "2.0.9",
"lerna": "3.22.1",
"rollup": "0.68.2",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-node-resolve": "3.4.0",
"standard": "12.0.1"
},
"babel": {
"presets": [
[
"@babel/env",
{
"targets": {
"node": "current"
}
}
],
"@babel/flow"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
},
"standard": {
"parser": "babel-eslint",
"rules": {
"no-use-before-define": "off"
}
}
}