-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.05 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
{
"name": "fable-css-modules",
"version": "1.8.0",
"description": "Generate Fable bindings for your CSS modules classes",
"main": "index.js",
"bin": {
"fable-css-modules": "build/cli.js",
"fcm": "build/cli.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepublishOnly": "npm run test && rimraf build && npm run build",
"test": "cd tests && npx vitest run",
"test:watch": "cd tests && npx vitest"
},
"keywords": [
"css",
"automation",
"fable",
"css-modules"
],
"author": "Maxime Mangel",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^18.0.0",
"@types/yargs": "^17.0.10",
"rimraf": "^3.0.2",
"typescript": "^4.7.4",
"vitest": "^1.3.1"
},
"dependencies": {
"fast-glob": "^3.2.11",
"postcss": "^8.4.14",
"postcss-selector-parser": "^6.0.10",
"sass": "^1.53.0",
"yargs": "^17.5.1"
}
}