-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 956 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
{
"name": "tiny-orm",
"version": "0.1.2",
"description": "A super tiny ORM for TypeScript.",
"main": "lib/index.js",
"typings": "lib/index",
"repository": "https://github.com/prashaantt/tiny-orm.git",
"author": "Prashant Tiwari <prashaantt@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"@types/joi": "^10.0.0",
"change-case": "^3.0.0",
"joi": "^10.1.0"
},
"devDependencies": {
"@types/code": "^4.0.1",
"@types/es6-promise": "^0.0.32",
"@types/lab": "^11.1.0",
"code": "^4.0.0",
"es6-promise": "^4.0.5",
"lab": "^11.2.1",
"pre-commit": "^1.2.2",
"tslint": "^4.2.0",
"typescript": "^2.1.4"
},
"scripts": {
"build": "rm -r lib && tsc",
"compile": "tsc --noEmit",
"lint": "tslint -c tslint.json './{src,test}/**/*.ts'",
"test": "lab -T test/test-transform.js"
},
"pre-commit": [
"lint",
"test",
"build"
]
}