-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.85 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.85 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
{
"name": "@btime/migration",
"version": "2.1.0",
"description": "## Usage",
"engines": {
"node": ">=8.9.0"
},
"files": [
"src",
"bin",
".env.dist"
],
"bin": {
"generate": "./bin/generate",
"migrate": "./bin/migrate",
"rollback": "./bin/rollback"
},
"scripts": {
"test": "LOG_LEVEL=error ./node_modules/nyc/bin/nyc.js --check-coverage --lines 75 --functions 75 --reporter=html --reporter=text mocha test/*.test.js --exit --timeout 555555",
"test-debugger": "LOG_LEVEL=error TIMEOUT=1000000 TRANSPORT_TYPE=amqp mocha --inspect-brk=9334 -S test/*.test.js --exit --timeout 0",
"fixStyle": "./node_modules/eslint/bin/eslint.js ./ --fix"
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/eslint/bin/eslint.js ./",
"pre-push": "npm test"
}
},
"nyc": {
"exclude": [
"migrations",
"test"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Btime/btime-migration.git"
},
"author": "Btime Team (team@btime.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Btime/btime-migration/issues"
},
"homepage": "https://github.com/Btime/btime-migration#readme",
"dependencies": {
"chalk": "^2.4.1",
"dotenv": "^6.0.0",
"fs": "0.0.1-security",
"moment": "^2.22.2",
"mongodb": "^3.1.6",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"sequelize": "^4.38.1",
"yargs": "^12.0.2"
},
"yargs": {
"duplicate-arguments-array": false
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^0.15.0-rc.3",
"mocha": "^5.2.0",
"nyc": "^13.0.1"
}
}