forked from OfirTheOne/mongo-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
{
"name": "mongo-ts-struct",
"version": "1.1.0",
"description": "Mongoose wrapper for Typescript supports",
"main": "dist/index.js",
"os": [
"darwin",
"linux",
"win32"
],
"keywords": [
"mongo",
"mongoDB",
"mongoose",
"typescript",
"mongo-ts",
"typed-schema"
],
"types": "dist/index.d.ts",
"author": "Ofir G.",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/OfirTheOne/mongo-ts"
},
"scripts": {
"test:lin": "NODE_ENV=travis_test&& mocha --require ts-node/register tests/**/**/*.test.ts",
"test:osx": "NODE_ENV=travis_test&& mocha --require ts-node/register tests/**/**/*.test.ts",
"test": "npm run test:osx",
"build": "tsc",
"start": "ts-node src/index.ts"
},
"devDependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/config": "0.0.34",
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"chai": "^4.2.0",
"mocha": "^6.1.4",
"config": "^3.0.1",
"ts-node": "^8.0.2",
"typescript": "^3.3.3333"
},
"dependencies": {
"@types/mongoose": "^5.3.20",
"mongoose": "^5.4.16",
"@types/node": "^11.9.5",
"reflect-metadata": "^0.1.13"
},
"files": [
"dist/**",
"index.js"
]
}