-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.39 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.39 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
{
"author": "Richard <richardo2016@gmail.com>",
"name": "@fxjs/orm-plugin-migration",
"version": "0.0.2",
"types": "@types/index.d.ts",
"description": "migration plugin for orm",
"keywords": [
"sql",
"orm",
"mysql",
"sqlite"
],
"license": "MIT",
"repository": "http://github.com/fxjs-modules/orm-plugin-migration.git",
"main": "./lib/migrator",
"scripts": {
"build": "fib-typify src -o lib",
"test-sqlite": "cross-env ORM_PROTOCOL=sqlite npm run test",
"test-mysql": "cross-env ORM_PROTOCOL=mysql npm run test",
"test": "fibjs test/run",
"ci": "npm run build && npm run test"
},
"engines": {
"fibjs": "*"
},
"analyse": false,
"dependencies": {
"@fibjs/mkdirp": "^1.0.1",
"@fxjs/sql-ddl-sync": "^0.3.8",
"@types/async": "^2.4.1",
"@types/bluebird": "^3.5.26",
"@types/path-parse": "^1.0.19",
"async": "^2.6.2",
"bluebird": "^3.5.3",
"path-parse": "^1.0.6"
},
"devDependencies": {
"@fibjs/ci": "^2.2.0",
"@fibjs/rmdirr": "^2.0.0",
"@fxjs/orm": "^1.9.4",
"@types/fibjs": "^0.26.5",
"@types/lodash": "^4.14.123",
"cross-env": "^5.2.0",
"fib-typify": "^0.5.2",
"lodash": "^4.17.11",
"shared-examples-for": "^0.1.3",
"should": "^13.2.3",
"sinon": "^7.3.1"
},
"ci": {
"type": "travis, appveyor",
"travis_services": [
"mysql"
],
"version": [
"0.21.0",
"0.22.0",
"0.23.0",
"0.24.0",
"0.25.0",
"0.26.0",
"0.26.1"
]
}
}