-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 810 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 810 Bytes
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
{
"name": "supermigration",
"version": "1.1.0",
"description": "supermigration CLI",
"bin": {
"supermigration": "bin/supermigration"
},
"scripts": {
"format": "prettier --write **/*.{js,json}",
"lint": "eslint ."
},
"files": [
"src",
"LICENSE",
"readme.md",
"docs",
"bin"
],
"license": "MIT",
"dependencies": {
"@google-cloud/bigquery": "^4.1.8",
"bluebird": "^3.5.5",
"enquirer": "^2.3.1",
"find-up": "^4.1.0",
"gluegun": "^3.3.4",
"lodash": "^4.17.15",
"prettier": "^1.12.1"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-prettier": "^3.1.0"
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
}
}