-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 853 Bytes
/
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
{
"name": "tbl",
"version": "0.0.1",
"description": "",
"scripts": {
"lint": "eslint src/**/*.js",
"tscheck": "node_modules\\.bin\\tsc --noEmit -p ./jsconfig.json",
"build:index": "rollup -c rollup.app.config.js",
"build:worker": "rollup -c rollup.app.config.worker.js",
"build": "npm run build:index && npm run build:worker"
},
"author": "Alexey Boyko",
"license": "ISC",
"type": "module",
"devDependencies": {
"@rollup/plugin-replace": "^5.0.1",
"eslint": "^8.27.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"rollup": "^2.79.1",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.4"
}
}