-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 1.44 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
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
{
"name": "karma-esbuild",
"version": "2.3.0",
"description": "ESBuild preprocessor for karma test runner",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/marvinhagemeister/karma-esbuild.git"
},
"scripts": {
"build": "rimraf dist/ && tsc",
"test": "ts-node test/run.ts",
"run-karma": "ts-node test/run-karma.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"karma-plugin",
"karma-preprocessor",
"esbuild"
],
"author": "Marvin Hagemeister <[email protected]>",
"license": "MIT",
"files": [
"dist/"
],
"dependencies": {
"chokidar": "^3.5.1",
"source-map": "0.6.1"
},
"peerDependencies": {
"esbuild": ">=0.17.0"
},
"devDependencies": {
"@types/karma": "^6.3.0",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.3",
"errorstacks": "^2.3.2",
"esbuild": "^0.17.2",
"husky": "^4.3.6",
"jsdom": "16.5.3",
"karma": "^5.2.3",
"karma-jsdom-launcher": "9.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"kolorist": "^1.4.1",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"pentf": "^2.5.3",
"prettier": "^2.3.0",
"puppeteer": "^9.1.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,yml}": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": {
"useTabs": true,
"arrowParens": "avoid",
"trailingComma": "all"
}
}