-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.08 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@bbon/css-to-jss",
"version": "1.2.2",
"description": "Make JSS file from CSS file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"css-to-jss": "./dist/index.js"
},
"scripts": {
"prebuild": "npm run lint",
"build": "webpack",
"lint": "tsc --noEmit && eslint ./src/**/*.ts",
"lint:fix": "tsc --noEmit && eslint ./src/**/*.ts --quiet --fix",
"dev": "ts-node src/index.ts",
"dev:list": "ts-node src/index.ts list sample/",
"dev:help": "ts-node src/index.ts help"
},
"keywords": [
"css",
"jss",
"react",
"typescript"
],
"author": "Pon Cheol Ku <dev@bbon.kr> (http://bbon.kr)",
"repository": {
"type": "git",
"url": "https://github.com/bbonkr/css-to-jss.git"
},
"homepage": "https://github.com/bbonkr/css-to-jss",
"bugs": {
"url": "https://github.com/bbonkr/css-to-jss/issues",
"email": "app@bbon.kr"
},
"license": "MIT",
"dependencies": {
"camelcase": "^6.2.0",
"commander": "^7.2.0",
"glob": "^7.1.7",
"progress": "^2.0.3"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@types/commander": "^2.12.2",
"@types/glob": "^7.1.3",
"@types/node": "^15.12.3",
"@types/progress": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-remove-console": "^6.9.4",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.1",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4",
"webpack": "^5.39.1",
"webpack-cli": "^4.7.2"
}
}