-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 836 Bytes
/
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
{
"name": "sort-sass",
"version": "0.2.1",
"description": "Sass properties sorting tool",
"main": "./lib/sort-sass.js",
"bin": {
"sortsass": "./bin/sortsass"
},
"repository": {
"type": "git",
"url": "https://github.com/miraks/sort-sass"
},
"keywords": [
"sass",
"sort"
],
"author": "Alexey Volodkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/miraks/sort-sass/issues"
},
"homepage": "https://github.com/miraks/sort-sass",
"preferGlobal": true,
"dependencies": {
"lodash": "^3.10.0"
},
"devDependencies": {
"chai": "^3.0.0",
"coffee-script": "^1.9.2",
"mocha": "^2.2.5"
},
"scripts": {
"build": "./node_modules/.bin/coffee --no-header -bco lib src",
"test": "./node_modules/.bin/mocha --compilers coffee:coffee-script/register"
}
}