-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.29 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "1schema",
"description": "One schema to rule them all",
"keywords": [
"schema",
"typescript",
"jsonschema"
],
"version": "0.2.0",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"bin": "dist/cli.js",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "del dist/",
"build": "tsc",
"postbuild": "shebang-trim dist/cli.js",
"predev": "del dist/",
"dev": "tsc --watch",
"check-types": "tsc --noEmit --project .",
"lint": "eslint \"**/*.ts\"",
"prettier:check": "prettier --check \"**/*.@(ts|js|yml|md|json)\"",
"prettier": "prettier --write \"**/*.@(ts|js|yml|md|json)\"",
"test": "mocha",
"prepare": "npm run build"
},
"files": [
"dist/**/*.@(js|ts|map)"
],
"repository": "metabolize/1schema",
"dependencies": {
"argparse": "^2.0.1",
"chalk": "^5.0.1",
"globby": "^13.1.1",
"json-stable-stringify": "^1.0.1",
"lodash": "^4.17.21",
"prettier": "^2.6.2",
"ts-json-schema-generator": "~1.0.x"
},
"devDependencies": {
"@types/argparse": "2.0.10",
"@types/chai": "^4.3.1",
"@types/dirty-chai": "^2.0.2",
"@types/js-yaml": "^4.0.5",
"@types/json-stable-stringify": "^1.0.34",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^18.11.18",
"@types/prettier": "^2.6.3",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"del-cli": "^4.0.1",
"dirty-chai": "^2.0.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.6.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"mocha": "^10.0.0",
"shebang-trim": "^1.1.0",
"tmp-promise": "^3.0.3",
"ts-node": "^10.9.1",
"type-fest": "^3.5.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">= 12.x"
},
"mocha": {
"extension": [
"ts"
],
"spec": "src/**/*.spec.ts",
"loader": "ts-node/esm"
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "avoid"
}
}