-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.54 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.54 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
{
"name": "nimble-html",
"version": "0.1.5",
"main": "html.js",
"type": "module",
"types": "html.d.ts",
"files": [
"html.*"
],
"scripts": {
"start": "five-server . --open=examples",
"dev": "npm start",
"build": "tsc",
"build:clean": "npm run clean && npm run build",
"build:watch": "tsc --watch",
"clean": "rimraf --glob '{.,examples/**,test/**}/*.d.{ts,ts.map}'",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"test": "prettier . --check && npm run build:clean && npm run test:all",
"test:watch": "npm run test:all:watch",
"test:all": "web-test-runner --config test/web-test-runner.all.config.mjs",
"test:all:watch": "npm run test:all -- --watch",
"test:unit": "web-test-runner --config test/web-test-runner.unit.config.mjs",
"test:unit:watch": "npm run test:unit -- --watch",
"test:perf": "web-test-runner --config test/web-test-runner.perf.config.mjs",
"test:perf:watch": "npm run test:perf -- --watch",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"release:major": "npm version major --message 'v%s'",
"release:minor": "npm version minor --message 'v%s'",
"release:patch": "npm version patch --message 'v%s'",
"preversion": "npm test",
"version": "git add .",
"postversion": "npm publish && git push --follow-tags"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@web/dev-server-import-maps": "^0.2.1",
"@web/test-runner": "^0.20.2",
"five-server": "^0.4.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"solid-js": "^1.9.9",
"typescript": "^5.9.2"
}
}