-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "compile-less-cli",
"version": "1.9.1",
"description": "All `.less` files are compiled into `.css` files.",
"homepage": "https://github.com/jaywcjlove/compile-less#readme",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"main": "./lib/compile.js",
"types": "./lib/compile.d.ts",
"bin": {
"compile-less": "lib/index.js"
},
"scripts": {
"prepare": "npm run build",
"watch": "tsbb watch",
"build": "tsbb build",
"test": "npm run build && tsbb test",
"coverage": "npm run build && tsbb test --coverage",
"example:test": "node ./lib/index.js -d test/src -o test/out",
"example:test:watch": "node ./lib/index.js -d test/src -o test/out --combine test/out/dist.css --watch",
"example:test:watch2": "node ./lib/index.js -d test/src -o test/out --watch --exclude-css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaywcjlove/compile-less.git"
},
"author": "kenny wang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaywcjlove/compile-less/issues"
},
"keywords": [
"less",
"css",
"style",
"cli",
"compile"
],
"files": [
"lib",
"src"
],
"devDependencies": {
"tsbb": "^4.0.5"
},
"dependencies": {
"@types/fs-extra": "^11.0.1",
"@types/less": "~3.0.3",
"@types/minimist": "~1.2.2",
"@types/node": "^18.15.11",
"autoprefixer": "~10.4.14",
"chokidar": "~3.5.3",
"directory-tree": "^3.5.1",
"fs-extra": "^11.1.1",
"postcss": "~8.4.21",
"less": "~4.2.0",
"less-plugin-autoprefix": "~2.0.0",
"minimist": "~1.2.8"
}
}