-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.28 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
50
51
52
53
54
55
56
57
{
"name": "evergreen-migration",
"version": "1.0.1",
"description":
"Command line tool for migrating from the separate `evergreen-*` packages to the new `evergreen-ui` package.",
"author": "Roland Warmerdam (https://roland.codes)",
"keywords": ["evergreen"],
"repository": "segmentio/evergreen-migration",
"license": "ISC",
"bin": {
"evergreen-migration": "./lib/cli.js"
},
"files": ["lib"],
"scripts": {
"test": "xo && ava",
"precommit": "lint-staged"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"babylon": "^6.18.0",
"chalk": "^2.3.0",
"fs-extra": "^5.0.0",
"globby": "^7.1.1",
"meow": "^4.0.0",
"ora": "^1.3.0",
"p-limit": "^1.2.0",
"recast": "^0.13.0"
},
"devDependencies": {
"ava": "^0.25.0",
"eslint-config-prettier": "^2.9.0",
"execa": "^0.9.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "^1.10.2",
"tempy": "^0.2.1",
"xo": "^0.18.2"
},
"xo": {
"extends": ["prettier"],
"space": true,
"semicolon": false,
"rules": {
"indent": ["off"]
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.js": ["xo --fix", "prettier --write", "git add"],
"*.{json,md}": ["prettier --write", "git add"]
}
}