-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
64 lines (64 loc) · 1.45 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
{
"name": "karma-typescript-cssmodules-transform",
"version": "5.5.4",
"description": "PostCSS runner plugin for CSS Modules",
"files": [
"dist/**"
],
"main": "dist/transform.js",
"keywords": [
"CSS Modules",
"karma-typescript",
"postcss runner",
"typescript"
],
"author": "monounity",
"contributors": [
"erikbarke"
],
"repository": {
"type": "git",
"url": "https://github.com/monounity/karma-typescript.git"
},
"license": "MIT",
"scripts": {
"build": "tsc --project tsconfig.json",
"lint": "eslint . --ext .ts",
"test": "nyc --require ts-node/register tape \"src/*.spec.ts\" | faucet"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.spec.ts"
],
"reporter": [
"html"
],
"tempDir": "./coverage/.nyc_output"
},
"dependencies": {
"log4js": "^6.3.0"
},
"devDependencies": {
"@types/karma": "^6.1.0",
"@types/lodash": "^4.14.159",
"@types/node": "^14.0.27",
"@types/sinon": "^9.0.4",
"@types/tape": "^4.13.0",
"faucet": "0.0.1",
"generic-names": "^2.0.1",
"karma-typescript": "5.5.4",
"nyc": "^15.1.0",
"postcss": "^7.0.32",
"postcss-modules-extract-imports": "^2.0.0",
"postcss-modules-local-by-default": "^3.0.3",
"postcss-modules-scope": "^2.2.0",
"postcss-modules-values": "^3.0.0",
"sinon": "^9.0.3",
"tape": "^5.0.1",
"ts-node": "^8.10.2",
"typescript": "latest"
}
}