-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "scss-to-json",
"version": "2.0.0",
"description": "A utility for converting SCSS variables files to JSON",
"homepage": "https://github.com/ryanbahniuk/scss-to-json",
"keywords": [
"scss",
"json"
],
"author": {
"name": "Ryan Bahniuk",
"email": "ryan.bahniuk@gmail.com",
"url": "http://bahni.uk"
},
"bin": {
"scss-to-json": "./bin/scss-to-json"
},
"repository": {
"type": "git",
"url": "git://github.com/ryanbahniuk/scss-to-json.git"
},
"bugs": {
"url": "https://github.com/ryanbahniuk/scss-to-json/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ryanbahniuk/scss-to-json/blob/master/LICENSE-MIT"
}
],
"main": "main.js",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"cssmin": "^0.4.3",
"minimist": "^1.2.0",
"node-sass": "^3.1.2, ^4.0.0"
},
"devDependencies": {
"cross-spawn": "2.0.0",
"eslint": "1.9.0",
"mocha": "2.2.5",
"proxyquire": "1.6.0",
"sinon": "1.15.4",
"wealthfront-javascript": "2.4.0"
},
"scripts": {
"test": "NODE_ENV=test mocha",
"pretest": "eslint ."
}
}