-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
31 lines (31 loc) · 836 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
29
30
31
{
"dependencies": {
"browserify": "^17.0.0",
"luxon": "^3.0.1",
"tsify": "^5.0.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/jsdom": "^16.2.14",
"@types/luxon": "^3.0.0",
"@types/node-fetch": "^2.6.1",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"express": "^4.17.3",
"jest": "^27.5.1",
"node-fetch": "^2.6.7",
"ts-jest": "^27.1.4",
"typescript": "^4.7.3"
},
"scripts": {
"compile-options": "npx browserify src/common.ts src/options.ts -p tsify -o dist/options.js",
"copy-html": "cp src/*.html dist",
"lint": "eslint .",
"test": "npm run -s compile-options && npm run -s copy-html && jest"
},
"jest": {
"preset": "ts-jest"
}
}