-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 843 Bytes
/
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
{
"private": true,
"name": "@mcaskill/html-build-attributes",
"version": "",
"type": "module",
"workspaces": [
"./dist"
],
"scripts": {
"build": "make publishable",
"clean": "make clean",
"lint": "make lint",
"test": "uvu tests",
"pretest": "make testable",
"test:coverage": "c8 npm test",
"test:report": "c8 --reporter=text --reporter=html --skip-full npm test",
"preversion": "npm test",
"version": "npm run build && git add -A dist"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"c8": "^9.1.0",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"uvu": "^0.5.6"
},
"engines": {
"node": ">=16"
}
}