forked from szokodiakos/typegoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "typegoose",
"version": "3.4.5",
"description": "Define Mongoose models using TypeScript classes.",
"main": "lib/typegoose.js",
"scripts": {
"start": "npm run build && node ./lib/typegoose.js",
"build": "rimraf lib && tsc",
"lint": "tslint --type-check --project tsconfig.json",
"precommit": "npm run test",
"test": "npm run lint && npm run cover",
"mocha": "npm run build && mocha 'lib/test/**/*.test.js'",
"cover": "npm run build && istanbul cover _mocha -- 'lib/test/**/*.test.js' -R spec",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/szokodiakos/typegoose.git"
},
"types": "lib/typegoose.d.ts",
"typings": "lib/typegoose.d.ts",
"author": "Akos Szokodi <[email protected]> (http://codingsans.com)",
"license": "MIT",
"dependencies": {
"@types/mongoose": "^4.7.1",
"lodash": "^4.17.4",
"mongoose": "^4.7.3",
"reflect-metadata": "^0.1.8",
"typescript": "^2.4.2"
},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/dotenv": "^4.0.0",
"@types/es6-promise": "^0.0.32",
"@types/lodash": "^4.14.55 <4.14.74",
"@types/mocha": "^2.2.33",
"@types/node": "^6.0.52",
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"dotenv": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mongoose-findorcreate": "^2.0.0",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.1",
"tslint": "^5.2.0"
},
"pre-commit": [
"precommit"
]
}