-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
44
45
46
{
"name": "upd8",
"version": "0.4.0",
"description": "An HTML-friendy javascript mini-framework",
"main": "lib/upd8.js",
"files": [
"README.md",
"LICENSE",
"package.json",
"package-lock.json",
"lib/**/*"
],
"types": "lib/upd8.d.ts",
"scripts": {
"test": "npm run test:unit && npm run test:integration",
"test:integration": "npx playwright test",
"test:unit": "tsc --noEmit && node --import tsx --test tests/unit/*.spec.ts",
"build": "rm -rf lib && tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jesseditson/upd8.git"
},
"keywords": [
"frontend",
"framework",
"html",
"mini"
],
"author": "Jesse Ditson <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/jesseditson/upd8/issues"
},
"homepage": "https://github.com/jesseditson/upd8#readme",
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/node": "^20.14.2",
"http-server": "^14.1.1",
"jsdom": "^25.0.0",
"todomvc-app-css": "^2.4.3",
"todomvc-common": "^1.0.5",
"tsx": "^4.19.1",
"typescript": "^5.4.5"
}
}