-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 859 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
{
"name": "ts-json-decode",
"version": "0.5.1",
"description": "A library ensuring type safety when decoding JSON data inspired by Elm",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -fr lib && tsc",
"test": "tsc --noEmit && jest",
"prepublish": "npm run build"
},
"keywords": [
"typescript",
"json",
"decode",
"elm"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/gaku-sei/ts-json-decode"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"devDependencies": {
"@types/jest": "^24.0.16",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
}
}