-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "css-in-js-generator",
"version": "0.3.0",
"description": "A tool to generate trendy CSS-in-JS files from regular CSS.",
"main": "index.js",
"scripts": {
"prepublish": "npm run-script test && tsc --pretty",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brikou/CSS-in-JS-generator.git"
},
"keywords": [
"css",
"css-in-js",
"emotion",
"generator",
"js",
"react"
],
"author": "Brice BERNARD <brikou@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brikou/CSS-in-JS-generator/issues"
},
"homepage": "https://github.com/brikou/CSS-in-JS-generator#readme",
"dependencies": {
"camelcase": "4.1.0",
"postcss": "6.0.13",
"postcss-selector-parser": "3.0.0-rc.0",
"prettier": "1.7.4"
},
"devDependencies": {
"@types/archiver": "2.0.0",
"@types/jest": "21.1.2",
"@types/lodash": "4.14.77",
"@types/node": "8.0.32",
"@types/prettier": "1.7.0",
"jest": "21.2.1",
"lodash.shuffle": "4.2.0",
"tslint": "5.7.0",
"typescript": "2.5.3"
}
}