-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
70 lines (70 loc) · 1.63 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
{
"name": "fusile",
"version": "2.0.0",
"description": "A web asset precompiling file system proxy",
"main": "lib/index.js",
"files": [
"lib",
"bin"
],
"scripts": {
"lint": "jshint .",
"test": "npm run lint && mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha -- --reporter dot",
"travis": "npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Munter/fusile.git"
},
"keywords": [
"fuse",
"filesystem",
"web",
"asset",
"precompiler"
],
"author": "Peter Müller <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Munter/fusile/issues"
},
"homepage": "https://github.com/Munter/fusile",
"bin": "bin/fusile-bin.js",
"dependencies": {
"chalk": "^1.1.3",
"csserror": "^2.0.2",
"errno": "^0.1.4",
"fuse-bindings": "^2.8.1",
"gaze": "1.0.0",
"minimatch": "^3.0.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.2",
"tolk": "^2.0.0",
"when": "^3.7.7"
},
"devDependencies": {
"LiveScript": "1.3.1",
"babel-core": "6.9.1",
"babel-preset-es2015": "6.9.0",
"coco": "0.9.1",
"coffee-script": "1.10.0",
"coveralls": "^2.11.9",
"css-parse": "2.0.0",
"dogescript": "2.3.0",
"istanbul": "^0.4.3",
"jshint": "^2.9.2",
"less": "2.7.1",
"marked": "0.3.5",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"myth": "1.5.0",
"node-sass": "^3.8.0",
"sinon": "1.17.4",
"stylus": "0.54.5",
"swig": "1.4.2",
"unexpected": "^10.13.3",
"unexpected-sinon": "^10.2.1"
}
}