-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "exodus",
"version": "1.1.3",
"description": "Framework-agnostic migrations.",
"main": "./src/index.js",
"bin": {
"exodus": "./bin/cli.js"
},
"scripts": {
"test": "jest --verbose --silent && eslint ."
},
"keywords": [
"cli",
"migrations"
],
"author": "Joakim Hedlund <contact@joakimhedlund.com>",
"homepage": "https://github.com/Sleavely/exodus-migrations",
"repository": "github:Sleavely/exodus-migrations",
"license": "MIT",
"engines": {
"node": ">=10.10.0"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"jest-extended": "^0.11.5"
},
"dependencies": {
"meow": "^6.1.0",
"ora": "^4.0.4",
"slugify": "^1.4.0"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"jest-extended"
]
}
}