UNPKG

1.76 kBJSONView Raw
1{
2 "name": "@fxjs/orm",
3 "version": "1.9.4",
4 "description": "Object Relational Mapping for fibjs",
5 "main": "lib",
6 "types": "@types/index.d.ts",
7 "repository": "git://github.com/fxjs-modules/orm.git",
8 "author": "Liu Hu <lion@9465.net>",
9 "contributors": [
10 {
11 "email": "richardo2016@gmail.com",
12 "name": "Richard"
13 }
14 ],
15 "homepage": "https://github.com/fxjs-modules/orm",
16 "license": "MIT",
17 "keywords": [
18 "orm",
19 "database",
20 "fibjs"
21 ],
22 "scripts": {
23 "build": "fib-typify src -o lib",
24 "test": "fibjs test",
25 "ci": "npm run build && npm run test",
26 "prepublishOnly": "npm run build"
27 },
28 "ci": {
29 "type": "travis, appveyor",
30 "version": [
31 "0.21.0",
32 "0.22.0",
33 "0.23.0",
34 "0.24.0",
35 "0.25.0",
36 "0.26.0",
37 "0.26.1"
38 ],
39 "travis_services": [
40 "mysql"
41 ]
42 },
43 "dependencies": {
44 "@fibjs/enforce": "0.0.8",
45 "@fxjs/sql-ddl-sync": "^0.3.8",
46 "@fxjs/sql-query": "^0.2.5",
47 "lodash.clonedeep": "^4.5.0",
48 "lodash.flatten": "^4.4.0",
49 "lodash.merge": "^4.6.1"
50 },
51 "devDependencies": {
52 "@fibjs/ci": "^2.2.0",
53 "@types/fibjs": "^0.26.5",
54 "@types/lodash.clonedeep": "^4.5.6",
55 "@types/lodash.flatten": "^4.4.6",
56 "@types/lodash.merge": "^4.6.6",
57 "fib-typify": "^0.5.2",
58 "lodash": "^4.17.11",
59 "semver": "^5.6.0"
60 },
61 "peerDependencies": {
62 "@fxjs/sql-ddl-sync": ">= 0.3.6 < 0.4",
63 "@fxjs/sql-query": ">= 0.2.5 < 0.3",
64 "@fibjs/enforce": ">= 0.0.8 < 0.1"
65 }
66}