-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.22 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.22 KB
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
{
"name": "1schema",
"description": "One schema to rule them all",
"keywords": [
"schema",
"typescript",
"jsonschema"
],
"version": "1.0.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\"",
"format:check": "prettier --check \"**/*.@(ts|js|yml|md|json)\"",
"format:fix": "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.6.2",
"globby": "^16.1.1",
"json-stable-stringify": "^1.3.0",
"lodash": "^4.17.22",
"prettier": "^3.8.1",
"ts-json-schema-generator": "~2.9.0"
},
"devDependencies": {
"@types/argparse": "2.0.17",
"@types/chai": "5.2.3",
"@types/dirty-chai": "2.0.5",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.24",
"@types/mocha": "10.0.10",
"@types/node": "25.4.0",
"@types/tmp": "0.2.6",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"chai": "6.2.2",
"chai-as-promised": "8.0.2",
"del-cli": "7.0.0",
"dirty-chai": "3.0.0",
"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": "11.7.5",
"shebang-trim": "1.2.0",
"tmp-promise": "3.0.3",
"ts-node": "10.9.2",
"type-fest": "5.4.4",
"typescript": "5.9.3"
},
"engines": {
"node": ">= 20.x"
},
"mocha": {
"extension": [
"ts"
],
"spec": "src/**/*.spec.ts",
"loader": "ts-node/esm"
},
"prettier": {
"semi": false,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "avoid",
"trailingComma": "es5"
}
}