-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
43 lines (43 loc) · 943 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
40
41
42
43
{
"name": "jss-cli",
"version": "6.0.2",
"description": "A command line tool for JSS",
"bin": {
"jss": "bin/jss.js"
},
"scripts": {
"cssToJss": "node bin/jss convert example/style.css -f js -e cjs",
"example": "babel-node example/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cssinjs/cli"
},
"keywords": [
"jss",
"cli"
],
"author": {
"name": "Oleg Slobodskoi",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/cssinjs/cli/issues"
},
"homepage": "http://cssinjs.org",
"dependencies": {
"commander": "^2.8.1",
"css": "^2.2.4",
"jss": "^10.1.1",
"jss-preset-default": "^10.1.1",
"lodash": "^4.17.4",
"require-dir": "^0.3.2",
"stringify-object": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5"
}
}