forked from ekryski/less2sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 933 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
37
38
39
{
"name": "less2sass",
"description": "A quick less to sass converter",
"version": "1.0.3",
"license": "MIT",
"author": {
"name": "Eric Kryski",
"email": "e.kryski@gmail.com"
},
"homepage": "http://erickryski.com",
"repository": {
"type": "git",
"url": "git@github.com:ekryski/less2sass.git"
},
"engines": {
"node": "=0.10.x",
"npm": "=1.2.x"
},
"bin": {
"less2sass": "bin/less2sass"
},
"main": "index.js",
"devDependencies": {
"mocha": "^2.3.4"
},
"scripts": {
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"mocha": "mocha --reporter spec",
"test": "npm run mocha"
},
"dependencies": {
"commander": "^12.0.0",
"mkdirp": "^0.5.1",
"win-fork": "^1.1.1"
}
}