-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 832 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 832 Bytes
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
{
"name": "ts-example",
"version": "1.0.0",
"description": "A short TypeScript example utilising Jest, Yarn and TypeDoc.",
"main": "index.js",
"scripts": {
"test": "jest && codecov"
},
"author": "Mark \"Happy-Ferret\" Bauermeister",
"license": "BSD-3-Clause",
"devDependencies": {
"@types/jest": "^19.2.2",
"global": "^4.3.1",
"jest": "^19.0.2",
"ts-jest": "^19.0.2",
"tsc": "^1.20150623.0",
"typescript": "^2.2.1",
"typedoc": "^0.5.8"
},
"dependencies": {},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}