-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "trillo",
"version": "0.6.3",
"description": "The HTML-oriented reactive web framework, built for Node.js and the browser.",
"keywords": [
"reactive",
"web",
"framework",
"server",
"browser",
"runtime",
"HTML"
],
"homepage": "https://github.com/trillojs/trillo#readme",
"bugs": "https://github.com/trillojs/trillo/issues",
"repository": {
"type": "git",
"url": "https://github.com/trillojs/trillo.git"
},
"author": "Fabrizio Capolini",
"license": "MIT",
"scripts": {
"build": "rm -rf dist/* && tsc && browserify dist/client/client-main.js -o dist/client.js && cp package.json dist && cp README.md dist && cp LICENSE dist && chmod a+x dist/command.js",
"test": "npm run build && mocha --exit -r ts-node/register test/**/*.test.ts",
"test-only": "mocha --exit -r ts-node/register test/**/*.test.ts",
"coverage": "nyc --reporter=cobertura npm run coverage-test",
"coverage-test": "mocha --reporter mocha-junit-reporter --exit -r ts-node/register test/**/*.test.ts",
"release-minor": "npm version $(semver $npm_package_version -i minor) && cp package.json dist && npm publish ./dist --tag latest",
"release-patch": "npm version $(semver $npm_package_version -i patch) && cp package.json dist && npm publish ./dist --tag latest"
},
"main": "server.js",
"bin": {
"trillo": "./command.js"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@swc/core": "^1.3.23",
"@types/chai": "^4.3.4",
"@types/escodegen": "^0.0.7",
"@types/esprima": "^4.0.3",
"@types/estraverse": "^5.1.2",
"@types/express": "^4.17.14",
"@types/jsdom": "^20.0.1",
"@types/markdown-it": "^12.2.3",
"@types/mocha": "^10.0.1",
"@types/ws": "^8.5.5",
"browserify": "^17.0.0",
"chai": "^4.3.7",
"coverage-badges-cli": "^1.0.11",
"jsdom": "^20.0.3",
"mocha": "^10.1.0",
"mocha-junit-reporter": "^2.2.1",
"nyc": "^15.1.0",
"puppeteer": "^19.8.0",
"regenerator-runtime": "^0.13.11",
"semver": "^7.3.8",
"ts-node": "^10.9.1",
"tsify": "^5.0.4",
"typescript": "^4.9.3"
},
"dependencies": {
"chokidar": "^3.5.3",
"commander": "^11.0.0",
"escodegen": "^2.0.0",
"esprima": "^4.0.1",
"estraverse": "^5.3.0",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"find-free-port": "^2.0.0",
"happy-dom": "^8.4.4",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-attrs": "^4.1.6",
"markdown-it-highlightjs": "^4.0.1",
"piscina": "^3.2.0",
"ws": "^8.14.1"
}
}