-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "modelsafe",
"version": "2.0.3",
"main": "dist/index.js",
"bugs": "https://github.com/creativecuriositystudio/modelsafe/issues",
"keywords": [
"orm",
"model",
"data",
"typescript"
],
"homepage": "https://github.com/creativecuriositystudio/modelsafe",
"license": "MIT",
"description": "A type-safe data modelling library",
"contributors": [
"Zack Corr <zack@z0w0.me> (http://z0w0.me)",
"Daniel Cavanagh <danielcavanagh85@gmail.com>",
"Sorakthun Ly <ly.sorakthun@gmail.com>"
],
"scripts": {
"prepush": "npm run lint && npm test",
"prepublish": "npm run build",
"build": "tsc",
"test": "mocha --opts mocha.opts",
"test:auto": "mocha --opts mocha.opts --watch",
"lint": "tslint --format stylish --project tsconfig.json",
"clean": "rm -rf dist"
},
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"gh-pages": "^2.0.1",
"husky": "^2.1.0",
"jsverify": "^0.8.4",
"mocha": "^6.1.4",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-ccs": "^0.6.2"
},
"dependencies": {
"@types/lodash": "^4.14.123",
"@types/reflect-metadata": "0.1.0",
"@types/validator": "^10.11.0",
"lodash": "^4.17.11",
"reflect-metadata": "^0.1.13",
"typescript": "^3.4.5",
"validator": "^10.11.0"
}
}