This repository was archived by the owner on Aug 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.01 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.01 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"private": true,
"description": "@flows for Flow",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-flow": "^7.0.0-beta.42",
"@babel/register": "^7.0.0-beta.42",
"@start/cli": "^0.1.0-0",
"@start/plugin-babel": "^0.1.0-0",
"@start/plugin-clean": "^0.1.0-0",
"@start/plugin-env": "^0.1.0-0",
"@start/plugin-eslint": "^0.1.0-0",
"@start/plugin-find": "^0.1.0-0",
"@start/plugin-find-git-staged": "^0.1.0-0",
"@start/plugin-istanbul": "^0.1.0-0",
"@start/plugin-npm-publish": "^0.1.0-0",
"@start/plugin-overwrite": "^0.1.0-0",
"@start/plugin-prettier-eslint": "^0.1.0-0",
"@start/plugin-read": "^0.1.0-0",
"@start/plugin-sub-task": "^0.1.0-0",
"@start/plugin-tape": "^0.1.0-0",
"@start/plugin-watch": "^0.1.0-0",
"@start/plugin-write": "^0.1.0-0",
"@start/reporter": "^0.1.0-0",
"@start/task": "^0.1.0-0",
"babel-eslint": "^8.2.2",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.68.0",
"tap-diff": "^0.1.1"
},
"start": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
},
"exclude": [
"transform-regenerator"
]
}
],
"@babel/preset-flow"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"plugins": [
"standard",
"prettier",
"node",
"promise",
"import",
"flowtype"
],
"extends": [
"standard",
"plugin:node/recommended",
"plugin:promise/recommended",
"plugin:import/recommended",
"plugin:flowtype/recommended",
"prettier",
"prettier/standard",
"prettier/flowtype"
],
"env": {
"node": true
},
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
},
"rules": {
"prettier/prettier": "error",
"node/no-unsupported-features": [
"error",
{
"ignores": [
"asyncAwait",
"modules",
"spreadProperties"
]
}
],
"node/shebang": "off",
"promise/no-nesting": "off",
"import/unambiguous": "off"
}
},
"eslintIgnore": [
"build/",
"coverage/",
"node_modules/"
],
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"parser": "babylon",
"semi": false,
"printWidth": 80,
"trailingComma": "es5"
},
"engines": {
"node": ">=6"
}
}