-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "h-mysql",
"version": "1.0.25",
"description": "一直以来很喜欢Thinkphp的数据操作风格,所以在nodejs上也封装了一个MYSQL数据库的常用操作,支持链式调用,实现语义化的数据库操作。",
"main": "./dist/h-mysql.js",
"scripts": {
"test": "mocha test/test.js",
"doc": "jsdoc2md libs/mysql.js > docs/mysql.md",
"dev": "rollup -c ./build/rollup.dev.config.js -w",
"build": "rollup -c ./build/rollup.bundle.config.js"
},
"keywords": [
"mysql",
"h-mysql",
"node-mysql",
"mysql thinkphp"
],
"author": "[email protected]",
"repository": {
"type": "git",
"url": "[email protected]:haizlin/h-mysql.git"
},
"bugs": {
"url": "https://github.com/haizlin/h-mysql/issues"
},
"homepage": "https://github.com/haizlin/h-mysql",
"license": "MIT",
"dependencies": {
"rollup-plugin-banner": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@types/node": "^12.12.17",
"chai": "^4.2.0",
"jest": "^24.8.0",
"jsdoc-to-markdown": "^5.0.0",
"mocha": "^6.1.4",
"mysql": "^2.17.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.25.3",
"sqlstring": "^2.3.1",
"tslib": "^1.9.3",
"typescript": "^3.7.4"
}
}