-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 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
{
"name": "loon-data",
"version": "0.3.1",
"description": "Provide Mybatis ResultMap like function for NodeJS with Typescript",
"main": "lib/index.js",
"types": "dts/index.d.ts",
"repository": "https://github.com/loon-project/loon-data",
"directories": {
"test": "test"
},
"scripts": {
"prepare": "npm run tsc:release",
"test": "npm test",
"tsc:release": "tsc --project tsconfig.compile.json",
"db:init": "node ./test/db/init.js",
"db:migrate": "knex --cwd test/db migrate:latest",
"db:rollback": "knex --cwd test/db migrate:rollback",
"g:migrate": "knex --cwd test/db migrate:make"
},
"author": "vincent.007.cn@gmail.com",
"license": "Apache-2.0",
"peerDependencies": {
"loon": "*"
},
"devDependencies": {
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.18",
"chai": "^3.5.0",
"loon": "^1.0.0-4",
"mocha": "^3.3.0",
"ts-node": "^3.0.4",
"typescript": "^2.3.2"
},
"dependencies": {
"@types/lodash": "^4.14.64",
"bluebird": "^3.5.0",
"lodash": "^4.17.4",
"mysql": "^2.13.0",
"reflect-metadata": "^0.1.10",
"source-map-support": "^0.4.15"
}
}