forked from mrzarkovic/cog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.44 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
47
48
{
"name": "@mzrk/cog",
"version": "0.1.4",
"description": "Reactive UI Library for HTML",
"main": "lib/cog.js",
"types": "lib/src/cog.d.ts",
"scripts": {
"dev": "webpack --watch",
"build": "webpack --env production && tsc --emitDeclarationOnly",
"test": "jest",
"make-badges": "istanbul-badges-readme --linesLabel='coverage'"
},
"keywords": [
"reactive",
"UI",
"library",
"JavaScript",
"HTML"
],
"author": "Milos Zarkovic <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrzarkovic/cog"
},
"homepage": "https://cogjs.org",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-modules": "0.1.6",
"@babel/preset-typescript": "^7.23.3",
"@testing-library/dom": "9.3.3",
"@testing-library/jest-dom": "6.1.4",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"babel-loader": "^9.1.3",
"eslint": "^8.53.0",
"eslint-plugin-html": "^7.1.0",
"istanbul-badges-readme": "1.8.5",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "22.1.0",
"ts-node": "10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}