forked from hehaijin/restful-stored-procedure
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 828 Bytes
/
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
{
"name": "restful-stored-procedure",
"version": "0.7.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./bin/start.js",
"test": "mocha",
"watch": "nodemon ./bin/start.js"
},
"bin": {
"rest-sp": "./bin/start.js"
},
"keywords": [
"sql server",
"sql",
"tsql",
"restful",
"stored procedure",
"sqlserver",
"procedure"
],
"author": "hehaijin",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/hehaijin/restful-stored-procedure.git"
},
"dependencies": {
"commander": "^2.19.0",
"cors": "^2.8.4",
"debug": "^4.1.0",
"express": "^4.16.4",
"mssql": "^4.0.1",
"winston": "^3.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.7"
}
}