forked from RyanCavanaugh/dts-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 989 Bytes
/
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
{
"name": "dts-dom",
"version": "3.5.0",
"homepage": "https://github.com/RyanCavanaugh/dts-dom",
"description": "DOM for TypeScript Declaration Files",
"main": "bin/index.js",
"typings": "bin/index.d.ts",
"scripts": {
"build": "tsc -p .",
"prepublish": "npm run build",
"test": "jest --coverage"
},
"author": "Ryan Cavanaugh",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/RyanCavanaugh/dts-dom"
},
"devDependencies": {
"@types/jest": "^22.0.1",
"jest": "^22.1.3",
"ts-jest": "^22.0.1",
"typescript": "^2.6.2"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"mapCoverage": true,
"collectCoverageFrom": [
"lib/**/*.ts"
],
"snapshotSerializers": [
"./lib/__tests__/string-snapshot-serializer"
]
}
}