forked from jsontypedef/json-typedef-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 808 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
{
"name": "jtd",
"version": "0.1.1",
"description": "A JavaScript / TypeScript / Node.js implementation of JSON Type Definition",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": "https://github.com/jsontypedef/json-typedef-js",
"author": "JSON Type Definition Contributors",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^13.9.1",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/lib"
]
},
"dependencies": {}
}