-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.44 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
{
"name": "ast_mongo_ts",
"version": "0.0.2",
"description": "The ast_mongo_ts is a nodejs library to handle asterisk objects with ast_mongo",
"author": "KINOSHITA minoru <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/minoruta/ast_mongo_ts",
"repository": {
"type": "git",
"url": "git://github.com/minoruta/ast_mongo_ts.git"
},
"main": "./dist/src/ast_mongo.js",
"types": "./dist/src/ast_mongo.d.ts",
"scripts": {
"build": "npm run build-ts && npm run tslint",
"postinstall": "postinstall-build dist",
"test": "jest --forceExit --maxWorkers 1",
"build-ts": "tsc",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"docs": "node_modules/.bin/typedoc src && ./.remove_local.sh"
},
"engines": {
"node": ">= 8"
},
"dependencies": {
"mongoose": "^5.0.0",
"mongoose-integer": "^0.1.1",
"postinstall-build": "^5.0.1"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/jest": "^21.1.10",
"@types/mongoose": "^4.7.32",
"@types/node": "^8.5.9",
"jest": "^22.4.3",
"ts-jest": "^22.4.4",
"tslint": "^5.9.1",
"typedoc": "^0.9.0",
"typescript": "~2.6.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.ts"
],
"testEnvironment": "node"
}
}