-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "elcy",
"private": true,
"type": "module",
"version": "0.2.0",
"description": "ORM for Typescript and Javascript with Linq-like query syntax.",
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha ./build/test/test.js",
"lint": "tslint ./src/**/*.ts --format verbose",
"lint-fix": "tslint --fix ./src/**/*.ts --format verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/leoc11/elcy.git"
},
"tags": [
"orm",
"typescript",
"typescript-orm",
"mssql",
"sql-server"
],
"author": {
"name": "Leo Chandra",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/leoc11/elcy/issues"
},
"homepage": "https://github.com/leoc11/elcy",
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.26",
"@types/sinon": "^5.0.7",
"@types/sinon-chai": "^3.2.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.0.5",
"sinon": "^6.3.5",
"sinon-chai": "^3.5.0"
}
}