forked from ryanbahniuk/scss-to-json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.16 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
{
"name": "@crocsx/scss-to-json",
"version": "3.0.0",
"description": "A utility for converting SCSS variables files to JSON",
"homepage": "https://github.com/Crocsx/scss-to-json",
"keywords": [
"scss",
"json"
],
"author": "Federico Giacomini <[email protected]>",
"bin": {
"scss-to-json": "bin/scss-to-json"
},
"repository": {
"type": "git",
"url": "git://github.com/Crocsx/scss-to-json.git"
},
"bugs": {
"url": "https://github.com/Crocsx/scss-to-json/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Crocsx/scss-to-json/blob/master/LICENSE-MIT"
}
],
"main": "main.js",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"cssmin": "^0.4.3",
"minimist": "^1.2.0",
"sass": "^1.32.8"
},
"devDependencies": {
"cross-env": "^5.2.0",
"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": "cross-env NODE_ENV=test mocha",
"pretest": "eslint ."
},
"directories": {
"test": "test"
},
"license": "ISC"
}