-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 969 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
{
"name": "@json-schema-spec/json-schema",
"version": "0.1.3",
"main": "lib/index.js",
"repository": "[email protected]:json-schema-spec/json-schema-typescript.git",
"author": "Ulysse Carion <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"dependencies": {
"@json-schema-spec/json-pointer": "^0.1.2",
"@types/deep-equal": "^1.0.1",
"deep-equal": "^1.0.1",
"uri-js": "^4.2.2"
},
"devDependencies": {
"@types/jest": "^23.0.0",
"@types/node": "^10.12.24",
"jest": "^23.0.0",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"typedoc": "^0.14.2",
"typescript": "^3.3.1"
},
"scripts": {
"build": "tsc",
"docs": "typedoc --out docs",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"rootDir": "src",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"js",
"ts"
]
}
}