forked from sass/node-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.42 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
{
"name": "node-sass",
"version": "2.0.0-beta",
"libsass": "3.1.0-beta",
"description": "Wrapper around libsass",
"license": "MIT",
"homepage": "https://github.com/sass/node-sass",
"repository": "sass/node-sass",
"author": {
"name": "Andrew Nesbitt",
"email": "andrewnez@gmail.com",
"url": "http://andrew.github.com"
},
"engines": {
"node": ">=0.10.0"
},
"main": "lib/index.js",
"bin": {
"node-sass": "bin/node-sass"
},
"gypfile": true,
"scripts": {
"coverage": "node scripts/coverage.js",
"install": "node scripts/install.js",
"postinstall": "node scripts/build.js",
"pretest": "node_modules/.bin/jshint bin lib test",
"test": "node_modules/.bin/mocha test"
},
"files": [
"bin",
"binding.gyp",
"lib",
"scripts",
"src",
"test"
],
"keywords": [
"css",
"libsass",
"preprocessor",
"sass",
"scss",
"style"
],
"dependencies": {
"chalk": "^0.5.1",
"cross-spawn": "^0.2.3",
"gaze": "^0.5.1",
"get-stdin": "^4.0.1",
"meow": "^3.0.0",
"mkdirp": "^0.5.0",
"mocha": "^2.1.0",
"nan": "^1.6.1",
"npmconf": "^1.1.9",
"object-assign": "^2.0.0",
"replace-ext": "0.0.1",
"request": "^2.51.0",
"sass-graph": "^1.0.1",
"shelljs": "^0.3.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
"jscoverage": "^0.5.9",
"jshint": "^2.6.0",
"mocha-lcov-reporter": "^0.0.1"
}
}