-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·44 lines (44 loc) · 946 Bytes
/
package.json
File metadata and controls
executable file
·44 lines (44 loc) · 946 Bytes
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
{
"version": "1.0.0",
"name": "sircus-cssscss-cli",
"description": "convert to scss from css4 syntax, using css-scss",
"license": "MIT",
"homepage": "http://sircus.blivesta.com",
"author": {
"name":"blivesta",
"url": "http://blivesta.com"
},
"keywords": [
"css4",
"scss",
"css-scss",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/sircus-cssscss-cli.git"
},
"bugs": {
"url": "https://github.com/sircus-cssscss-cli/issues"
},
"dependencies": {
"chalk":"^1.0.0",
"css-scss": "^0.1.0",
"mkdirp": "^0.5.1",
"minimist": "^1.1.2"
},
"devDependencies": {
"chai": "^3.5.0",
"glob": "^7.0.3",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
},
"scripts": {
"build": "npm install -g && cssscss test/fixtures/*.css -d test/scss",
"dev": "mocha -w -R spec",
"test": "mocha -R spec"
},
"bin": {
"cssscss": "bin/cli.js"
}
}