forked from elm-tooling/elm-tooling-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
26 lines (26 loc) · 839 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
{
"private": true,
"type": "commonjs",
"scripts": {
"pretest": "prettier --check . && eslint . --report-unused-disable-directives",
"test": "jest --coverage && ts-node scripts/test-all-downloads.ts && ts-node scripts/test-integration.ts && ts-node scripts/test-getExecutable.ts",
"posttest": "npm run build",
"build": "ts-node scripts/build.ts"
},
"devDependencies": {
"@types/jest": "26.0.20",
"@types/node": "14.14.25",
"@types/rimraf": "3.0.0",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"eslint": "7.19.0",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-simple-import-sort": "7.0.0",
"jest": "26.6.3",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "26.5.0",
"ts-node": "9.1.1",
"typescript": "4.1.3"
}
}