forked from SpartanLabs/mindless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
{
"name": "mindless",
"version": "1.0.0-beta.9",
"description": "",
"main": "index.js",
"type": "index.d.ts",
"devDependencies": {
"@types/dynogels": "^8.0.0",
"@types/jest": "^21.1.6",
"@types/joi": "10.6.1",
"@types/lodash": "^4.14.108",
"@types/node": "^8.0.31",
"@types/route-parser": "^0.1.1",
"jest": "^21.2.1",
"ts-jest": "^21.2.3",
"typemoq": "^2.0.1",
"typescript": "^2.5.3"
},
"dependencies": {
"dynogels": "^8.0.1",
"joi": "12.0.0",
"lodash": "^4.17.10",
"route-parser": "^0.0.5"
},
"peerDependencies": {
"dynogels": "^8.0.1",
"joi": "12.0.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test-cover": "jest --coverage --collectCoverageFrom=!**/index.ts --collectCoverageFrom=src/**/*.ts",
"test-travis": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpartanLabs/mindless.git"
},
"keywords": [
"typescript",
"node",
"framework"
],
"author": "SpartanLabs, LLC",
"license": "ISC",
"bugs": {
"url": "https://github.com/SpartanLabs/mindless/issues"
},
"homepage": "https://github.com/SpartanLabs/mindless#readme",
"jest": {
"globals": {
"tsConfigFile": "tsconfig.json"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/tests/**/*.test.(ts)"
],
"testEnvironment": "node",
"mapCoverage": true
}
}