forked from najs-framework/najs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 3.34 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "najs",
"version": "0.5.4",
"scripts": {
"build": "npm run build-ts && npm run tslint",
"build-ts": "tsc -d",
"coverage": "npm run build && jest ./dist/test --coverage --forceExit",
"test": "jest ./dist/test --forceExit",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"prepublishOnly": "tsc -d -p ./ --outDir dist"
},
"jest": {
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json",
"skipBabel": true
}
},
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleFileExtensions": [
"js",
"ts",
"json"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.ts",
"**/test/**/*.test.js"
],
"testEnvironment": "node"
},
"files": [
"dist/**/*"
],
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/najs-framework/najs.git"
},
"author": {
"name": "Nhat Phan",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=8.7"
},
"peerDependencies": {
"ajv": "^6.1.1",
"config": "^1.29.2",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"handlebars": "^4.0.11",
"handlebars-helpers": "^0.10.0",
"jest": "^21.2.1",
"najs-binding": "^1.8.0",
"najs-eloquent": "^0.2.15",
"najs-facade": "^1.1.0",
"redis": "^2.8.0",
"sinon": "^4.1.3",
"ts-jest": "^21.2.3",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"winston": "^2.4.0"
},
"dependencies": {
"base64url": "^2.0.0",
"body-parser": "^1.18.2",
"collect.js": "^4.0.4",
"connect-redis": "^3.3.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"csurf": "^1.9.0",
"express-request-id": "^1.4.0",
"express-session": "^1.15.6",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.4",
"moment": "^2.21.0",
"najs-binding": "^1.8.0",
"najs-facade": "^1.1.0",
"path-to-regexp": "^2.1.0",
"sinon": "^4.1.3",
"supertest": "^3.1.0"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/benchmark": "^1.0.31",
"@types/config": "^0.0.33",
"@types/connect-redis": "^0.0.7",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.3",
"@types/csurf": "^1.9.35",
"@types/express": "^4.11.0",
"@types/express-handlebars": "^0.0.30",
"@types/express-session": "^1.15.8",
"@types/handlebars": "^4.0.36",
"@types/jest": "^21.1.8",
"@types/joi": "^13.0.5",
"@types/jsonwebtoken": "^7.2.5",
"@types/lodash": "^4.14.91",
"@types/mongoose": "^5.0.6",
"@types/passport": "^0.4.3",
"@types/redis": "^2.8.6",
"@types/sinon": "^4.1.2",
"@types/supertest": "^2.0.5",
"@types/winston": "^2.3.7",
"ajv": "^6.1.1",
"benchmark": "^2.1.4",
"config": "^1.29.2",
"coveralls": "^3.0.0",
"express": "^4.16.2",
"express-handlebars": "^3.0.0",
"handlebars": "^4.0.11",
"handlebars-helpers": "^0.10.0",
"jest": "^21.2.1",
"mongoose": "^5.0.9",
"najs-eloquent": "^0.2.15",
"redis": "^2.8.0",
"ts-jest": "^21.2.3",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"winston": "^2.4.0"
}
}