-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
80 lines (80 loc) · 2.06 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "toshihiko",
"version": "1.0.4",
"description": "Yet another simple ORM for node.js.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"async": "^3.2.2",
"@types/mysql": "^2.15.18",
"bluebird": "^3.5.1",
"debug": "^4.1.1",
"eventemitter2": "^6.0.0",
"fbbk-json": "^1.1.0",
"lodash": "4.17.21",
"moment": "^2.20.0",
"otrans": "^1.0.1",
"scarlet-task": "^2.0.0",
"sqlstring": "^2.3.0",
"toshihiko-mysqlparser": "^1.0.0"
},
"devDependencies": {
"chalk": "^3.0.0",
"conventional-changelog-cli": "2.0.17",
"coveralls": "3.0.7",
"cz-conventional-changelog": "3.0.0",
"decache": "^4.3.0",
"ghooks": "2.0.4",
"istanbul": "1.0.0-alpha.1",
"jshint": "^2.12.0",
"mocha": "5.1.0",
"mockjs": "^1.0.1-beta3",
"mysql": "^2.15.0",
"mysql2": "^2.0.0",
"should": "13.2.2",
"sync-runner": "^1.0.0",
"toshihiko-memcached": "^1.0.1",
"validate-commit-msg": "2.14.0"
},
"scripts": {
"test": "make test",
"lint": "./node_modules/.bin/jshint .",
"validate": "npm ls",
"commit-msg": "./node_modules/.bin/validate-commit-msg",
"changelog": "./node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -s"
},
"repository": {
"type": "git",
"url": "https://github.com/XadillaX/Toshihiko.git"
},
"keywords": [
"orm",
"mysql",
"cache"
],
"author": [
"XadillaX <[email protected]>",
"luicfer <[email protected]>",
"lfeng <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/XadillaX/Toshihiko/issues"
},
"homepage": "https://github.com/XadillaX/Toshihiko",
"engines": {
"node": ">=4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint && npm run validate && rm docs/misc/changelog.md && cp CHANGELOG.md docs/misc/changelog.md && git add docs/misc/changelog.md",
"commit-msg": "npm run commit-msg",
"pre-push": "npm test"
}
}
}