-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "riotjs-simple-typescript",
"version": "0.5.0",
"description": "A way to work with TypeScript in RiotJS which also works fine with unit testing",
"keywords": [
"typescript",
"test",
"mocha",
"jest",
"riotjs",
"riot"
],
"author": "Thomas Backlund",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bashlund/riotjs-simple-typescript.git"
},
"bugs": {
"url": "https://github.com/bashlund/riotjs-simple-typescript/issues"
},
"main": "./build/index.js",
"scripts": {
"tsc": "npx tsc",
"build": "npx tsc",
"lint": "npx eslint ./src/*.ts"
},
"bin": {
"new-riot": "build/src/tools/new-riot.js"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@riotjs/dom-bindings": "^9.0.4",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.5.3",
"eslint": "^9.9.0",
"riot": "^9.2.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"dependencies": {
"linkedom": "^0.18.4"
}
}