-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.47 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
{
"name": "esbuild-plugin-css-modules",
"version": "0.3.0",
"description": "Plugin for esbuild with partial support of css-modules",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"all": "npm-run-all --serial --print-label",
"build:clean": "rimraf lib",
"build:compile": "tsc",
"build": "npm run all build:*",
"test:unit": "npx ts-node node_modules/.bin/tape 'tests/*.tests.ts' | npx tap-spec",
"test": "npm run all build test:*",
"prepare": "npm run build"
},
"author": {
"name": "Nikolai Mavrenkov",
"email": "[email protected]",
"url": "https://koluch.ru"
},
"license": "ISC",
"keywords": [
"esbuild",
"plugin",
"css",
"css-modules"
],
"dependencies": {
"@types/css-tree": "^1.0.5",
"@types/fs-extra": "^9.0.11",
"@types/tmp": "^0.2.0",
"css-tree": "^1.1.2",
"fs-extra": "^9.0.1",
"rm": "^0.1.8",
"tmp": "^0.2.1",
"typescript": "^4.2.4"
},
"peerDependencies": {
"esbuild": ">=0.11.0"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@types/tape": "^4.13.0",
"esbuild": "^0.8.32",
"husky": "^4.3.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"tap-spec": "^5.0.0",
"tape": "^5.2.2",
"ts-node": "^9.1.1"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npx prettier --write"
]
},
"files": [
"lib/*"
]
}