-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
28 lines (28 loc) · 1.17 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
{
"private": true,
"type": "commonjs",
"scripts": {
"pretest": "prettier --check . && eslint . --report-unused-disable-directives",
"test": "jest --coverage && ts-node scripts/TestAllDownloads.ts && ts-node scripts/TestIntegration.ts && ts-node scripts/TestGetExecutable.ts && ts-node scripts/HashUrls.ts https://github.com/mpizenberg/elm-test-rs/releases/download/v1.0/elm-test-rs_linux.tar.gz https://github.com/mpizenberg/elm-test-rs/releases/download/v1.0/elm-test-rs_macos.tar.gz https://github.com/mpizenberg/elm-test-rs/releases/download/v1.0/elm-test-rs_windows.zip",
"posttest": "npm run build",
"build": "ts-node scripts/Build.ts"
},
"devDependencies": {
"@rollup/plugin-typescript": "11.0.0",
"@types/jest": "27.4.1",
"@types/node": "18.14.3",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"eslint": "8.35.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"jest": "27.5.1",
"prettier": "2.8.4",
"rimraf": "3.0.2",
"rollup": "3.18.0",
"ts-jest": "27.1.4",
"ts-node": "10.9.1",
"typescript": "4.9.5"
}
}