-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "josie-builder",
"version": "0.2.3",
"description": "JSON Schema Builder",
"main": "lib/index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types"
],
"scripts": {
"test": "TS_NODE_PROJECT=./test/tsconfig.json nyc mocha -r ts-node/register -r tsconfig-paths/register test/**/*.spec.ts",
"js-example": "node examples/javascript.js",
"ts-example": "ts-node --require tsconfig-paths/register --project examples/tsconfig.json examples/typescript.ts"
},
"nyc": {
"extension": [
".js"
],
"exclude": [
"**/*.d.ts"
],
"include": [
"lib/**/*.js"
],
"reporter": [
"text",
"html"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/aravindanve/josie-builder.git"
},
"keywords": [
"json-schema",
"builder",
"chaining"
],
"author": "Aravindan Ve <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aravindanve/josie-builder/issues"
},
"homepage": "https://github.com/aravindanve/josie-builder#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^9.1.1",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.7.3"
}
}