-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "watch-less-do-more",
"version": "0.4.0",
"description": "Watch less files and their dependency tree for changes & automatically recompile",
"main": "src/index.js",
"bin": "src/cli.js",
"scripts": {
"start": "http-server examples/ -c-0 -o",
"watch": "src/cli.js -u autoprefixer -i examples/src/index.less -o examples/build/index.css",
"test": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/jakesidsmith/watch-less-do-more.git"
},
"keywords": [
"watch",
"watcher",
"less",
"styles",
"css",
"compiler",
"parser"
],
"author": "Jake 'Sid' Smith",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/jakesidsmith/watch-less-do-more/issues"
},
"homepage": "/~https://github.com/jakesidsmith/watch-less-do-more#readme",
"devDependencies": {
"autoprefixer": "^6.7.7",
"bootstrap": "^3.4.1",
"eslint-config-jakesidsmith": "git+/~https://github.com/jakesidsmith/eslint-config-jakesidsmith.git",
"http-server": "^0.12.3",
"less": "^3.12.2"
},
"dependencies": {
"chokidar": "^3.0.2",
"lodash.foreach": "^4.5.0",
"lodash.map": "^4.6.0",
"mkdirp": "^0.5.1",
"yargs": "^6.6.0"
},
"peerDependencies": {
"less": "3.x"
},
"optionalDependencies": {
"postcss": "5.x"
},
"engines": {
"node": ">= 8"
}
}