-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "core3-utils",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf -g \"./packages/*/dist\"",
"build": "tsc --build",
"lint": "eslint",
"pretest": "npm run lint && npm run build",
"test": "npm run test:only",
"test:only": "mocha \"packages/*/dist/test/**/*.unit.js\"",
"prettify": "prettier . --write"
},
"devDependencies": {
"@file-services/memory": "^9.4.1",
"@file-services/types": "^9.4.1",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "20",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"@types/yargs": "^17.0.33",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"expose-gc": "^1.0.0",
"mocha": "^11.0.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.20.0"
},
"license": "MIT"
}