-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.36 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
{
"name": "mcpt-marketing",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"test": "node --test --test-concurrency=1",
"test:gen-lock": "node --test test/gen-lock.test.mjs",
"test:validate": "node --test test/validate.test.mjs",
"test:hash-file": "node --test test/hash-file.test.mjs",
"test:_paths": "node --test test/_paths.test.mjs",
"test:version": "node --test test/version.test.mjs",
"test:new-tool": "node --test test/new-tool.test.mjs",
"test:consume": "node --test test/consume.test.mjs",
"test:graduation": "node --test test/graduation-report.test.mjs",
"test:watch": "node --test --watch",
"test:coverage": "node --test --experimental-test-coverage",
"validate": "node marketing/scripts/validate.mjs",
"lock": "node marketing/scripts/gen-lock.mjs",
"lock:check": "node marketing/scripts/gen-lock.mjs --check",
"hash": "node marketing/scripts/hash-file.mjs",
"new-tool": "node marketing/scripts/new-tool.mjs",
"graduation": "node marketing/scripts/graduation-report.mjs",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"verify": "npm run fmt:check && npm run validate && npm run lock:check && npm test"
},
"devDependencies": {
"ajv": "^8.17.0",
"ajv-formats": "^3.0.0",
"prettier": "^3.4.0"
}
}