-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
71
72
73
{
"name": "less-watch-compiler",
"version": "1.16.3",
"description": "A command that watches folders(and subfolders) for file changes and automatically compile the less css files into css. This is a file system watcher and compiler.",
"main": "dist/less-watch-compiler.js",
"directories": {
"test": "tests"
},
"files": [
"dist"
],
"scripts": {
"test": "yarn run build && yarn run clean && npx mocha --exit",
"postversion": "git push && git push --tags",
"clean": "rm -R ./test/css || true && mkdir ./test/css",
"prepublishOnly": "yarn run build",
"commit": "git-cz -n",
"build": "babel src --out-dir dist",
"start": "yarn run build && node ./dist/less-watch-compiler.js"
},
"repository": {
"url": "https://github.com/jonycheung/deadsimple-less-watch-compiler.git",
"type": "git"
},
"bin": {
"less-watch-compiler": "dist/less-watch-compiler.js"
},
"dependencies": {
"amdefine": ">= 0.1.0",
"commander": "^8.0.0",
"extend": ">= 2.0.0",
"global": "^4.3.1",
"less": "^4.0.0",
"shelljs": ">= 0.4.0"
},
"engine": "node 0.10.26",
"devDependencies": {
"@types/commander": "2.12.2",
"babel-cli": "6.26.0",
"babel-preset-env": "1.7.0",
"cz-conventional-changelog": "3.3.0",
"mocha": "9.1.1"
},
"preferGlobal": true,
"keywords": [
"less",
"lessc",
"compiler",
"file system",
"watcher",
"watch",
"compile",
"folder",
"directory",
"files",
"css"
],
"author": "Jony Cheung",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonycheung/deadsimple-less-watch-compiler/issues"
},
"homepage": "https://github.com/jonycheung/deadsimple-less-watch-compiler",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/less-watch-compiler"
}
}