-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 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
{
"name": "query-manager",
"version": "2.2.2",
"description": "Server side sql scripts management.",
"main": "index.js",
"scripts": {
"test": "npm run tsc && mocha",
"test:dev": "mocha -w",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"tsc": "./node_modules/.bin/tsc",
"tsc:watch": "npm run tsc -- -w"
},
"repository": {
"type": "git",
"url": "https://github.com/proprogrammer2015/query-manager"
},
"keywords": [
"sql",
"script",
"manager",
"simple",
"inmemory"
],
"author": "Jacek Mankowski <it.developer.1992@gmail.com>",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.11",
"read-file": "^0.2.0",
"string-template": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/lodash": "^4.14.92",
"@types/mocha": "^2.2.48",
"@types/string-template": "^1.0.2",
"chai": "^3.5.0",
"istanbul": "^0.4.4",
"mocha": "^5.2.0",
"sinon": "^1.17.4",
"typescript": "^2.9.2"
}
}