-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.75 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "myra",
"private": true,
"version": "6.0.2",
"description": "Myra is a simple and small Typescript JSX rendering library.",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/jhdrn/myra.git"
},
"keywords": [
"myra",
"typescript",
"jsx"
],
"author": {
"name": "Jonathan Hedrén",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/jhdrn/myra/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin-js": "^2.6.1",
"@types/chai": "^4.3.17",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.7",
"@types/node": "^20.2.4",
"@types/sinon": "^17.0.3",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.2",
"chai": "^5.1.1",
"copyfiles": "^2.4.1",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.8.0",
"http-server": "^14.1.1",
"lodash.camelcase": "^4.3.0",
"mocha": "^10.7.0",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"sinon": "^18.0.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc && rollup -c",
"postbuild": "rimraf build && dts-bundle-generator --config dts-config.json --project tsconfig.json && copyfiles LICENSE README.md package.json dist",
"pretest": "tsc",
"test": "web-test-runner",
"test:local": "npm run pretest && web-test-runner --watch && npm run posttest",
"coverage": "http-server -c-1 -o -p 9875 ./coverage/lcov-report"
},
"main": "myra.js",
"module": "myra.mjs",
"typings": "myra.d.ts"
}