-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.27 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
58
59
60
{
"directories": {
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"scripts/",
"almin-migration-tools.js",
"migrations.js",
"index.js"
],
"name": "@almin/migration-tools",
"version": "1.4.0",
"main": "index.js",
"bin": {
"almin-migration-tools": "./almin-migration-tools.js"
},
"scripts": {
"precommit": "lint-staged",
"postcommit": "git reset",
"test": "jest"
},
"lint-staged": {
"scripts/*.js": [
"prettier --tab-width 4 --print-width 120 --write",
"git add"
]
},
"jest": {
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$"
},
"keywords": [
"almin",
"migrate",
"migration"
],
"description": "Migration scripts for Almin.",
"repository": {
"type": "git",
"url": "https://github.com/almin/migration-tools.git"
},
"bugs": {
"url": "https://github.com/almin/migration-tools/issues"
},
"homepage": "https://github.com/almin/migration-tools",
"dependencies": {
"babel-codemod": "^2.0.6",
"code-migrator": "^2.0.0",
"jscodeshift": "^0.5.1",
"meow": "^5.0.0",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"husky": "^0.14.3",
"jest": "^23.5.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2"
}
}