-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
44 lines (44 loc) · 839 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
44
{
"name": "rcss",
"version": "0.1.5",
"description": "Turn your JavaScript objects into CSS classes.",
"main": "index.js",
"directories": {
"example": "examples"
},
"dependencies": {
"sha1": "^1.1.0",
"deep-extend": "^0.2.11",
"escape-html": "^1.0.1",
"valid-css-props": "0.0.5",
"valid-media-queries": "0.0.3"
},
"devDependencies": {
"jest-cli": "^0.1.15"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/chenglou/RCSS.git"
},
"keywords": [
"css",
"preprocessor",
"json",
"react",
"rcss",
"style"
],
"author": "chenglou",
"license": "MIT",
"bugs": {
"url": "https://github.com/chenglou/RCSS/issues"
},
"jest": {
"unmockedModulePathPatterns": [
"./node_modules/*"
]
}
}