forked from atom/less-cache
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.12 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.12 KB
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
{
"name": "less-cache",
"version": "1.1.0-aminya.1",
"description": "Less compile cache",
"main": "./lib/less-cache",
"scripts": {
"clean": "shx rm -rf lib",
"test": "jasmine-focused --captureExceptions --coffee spec",
"coffee": "npm run clean && shx cp -r src lib && coffee -c -M -o lib lib && shx rm -rf lib/*.coffee",
"build": "npm run coffee",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/atom/less-cache.git"
},
"bugs": {
"url": "https://github.com/atom/less-cache/issues"
},
"homepage": "http://atom.github.io/less-cache",
"keywords": [
"less",
"less.js",
"cache"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/atom/less-cache/raw/master/LICENSE.md"
}
],
"dependencies": {
"fs-plus": "^3.1.1",
"less": "^3.12.2",
"underscore-plus": "^1.7.0",
"walkdir": "^0.4.1"
},
"devDependencies": {
"coffeescript": "^1.12.7",
"fstream": "^1.0.10",
"jasmine-focused": "^1",
"temp": "^0.8.3",
"tmp": "0.0.28",
"shx": "^0.3.2",
"cross-env": "^7.0.2"
}
}