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
|
{
"dependencies": {
"ajv-cli": "^5.0.0",
"ajv-formats": "^2.1.1",
"js-yaml": "^4.1.0",
"safe-stable-stringify": "^2.4.2",
"ts-node": "^10.9.1",
"vscode-json-languageservice": "^5.2.0"
},
"scripts": {
"compile": "tsc -p ./src",
"deps": "npx --yes npm-check-updates -u && npm install --ignore-scripts",
"test": "python3 src/rebuild.py && mocha"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/js-yaml": "^4.0.5",
"@types/minimatch": "^5.1.2",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"chai": "^4.3.7",
"minimatch": "^6.2.0",
"mocha": "^10.2.0",
"typescript": "^4.9.5"
},
"directories": {
"test": "./src"
}
}
|