-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
66 lines (66 loc) · 1.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "wetland",
"version": "5.1.2",
"description": "A modern object-relational mapper (ORM) for node.js.",
"main": "./dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "mocha dist/test/helper dist/test/unit/{*.spec.js,**/*.spec.js} --timeout 15000",
"dtest": "npm run build && npm run test",
"build": "rm -rf ./dist && tsc && gulp build",
"version": "conventional-changelog -p angular -i doc/CHANGELOG.md -s && git add -A doc/CHANGELOG.md",
"prepublish": "npm run build",
"postpublish": "git push upstream master && git push upstream --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpoonX/wetland.git"
},
"author": "RWOverdijk <r.w.overdijk@gmail.com>",
"keywords": [
"orm",
"knex",
"db",
"mysql",
"sqlite",
"postgres",
"node"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/SpoonX/wetland/issues"
},
"homepage": "https://wetland.spoonx.org",
"dependencies": {
"bluebird": "^3.5.3",
"csv-parse": "^1.2.0",
"del": "^3.0.0",
"homefront": "^3.0.0",
"knex": "^0.19.5",
"mkdirp": "^0.5.1",
"stream-replace": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^3.4.30",
"@types/knex": "^0.15.2",
"@types/mkdirp": "^0.3.29",
"@types/mocha": "^2.2.29",
"@types/node": "^6.0.41",
"chai": "^3.5.0",
"gulp": "^3.9.1",
"gulp-conventional-changelog": "^1.1.3",
"mocha": "^3.0.1",
"mysql": "^2.11.1",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.6.1",
"sqlite3": "^4.0.2",
"ts-node": "^5.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.3"
}
}