-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.87 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
{
"name": "@mitmaro/sql-template-engine",
"version": "0.1.0",
"description": "A SQL template engine",
"main": "lib/index.js",
"files": [
"lib",
"types"
],
"directories": {
"test": "test"
},
"types": "types/index.d.ts",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:MitMaro/node-sql-template-engine.git"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"build": "scripts/build.bash",
"build:docs": "scripts/docs.bash",
"lint": "scripts/lint.bash",
"test": "scripts/lint.bash && scripts/test.bash :all",
"test:unit": "scripts/test.bash :unit",
"test:coverage": "scripts/test.bash :coverage"
},
"author": "Tim Oram <[email protected]>",
"contributors": [
"Tim Oram <[email protected]>"
],
"license": "ISC",
"devDependencies": {
"@mitmaro/build-scripts": "^0.1.5",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/lodash.get": "^4.4.4",
"@types/lodash.topath": "^4.5.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.5",
"@types/sinon-chai": "^3.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"diff": "^3.5.0",
"eslint": "^5.9.0",
"eslint-config-mitmaro": "^4.0.0",
"eslint-plugin-chai-expect": "^2.0.1",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-mocha": "^5.2.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-typescript": "^0.13.0",
"fs-extra": "^7.0.1",
"mocha": "^5.2.0",
"nyc": "13.1.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.6",
"typescript-eslint-parser": "^20.1.1"
},
"dependencies": {
"@mitmaro/errors": "^2.0.0",
"lodash.get": "^4.4.2",
"lodash.topath": "^4.5.2"
}
}