-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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": "style-to-css",
"description": "Convert a style object to CSS",
"jsnext:main": "dist/next.js",
"main": "dist/cjs.js",
"scripts": {
"bundle": "rollup -c .rollup/cjs.js && rollup -c .rollup/next.js",
"prepublish": "npm run bundle",
"test": "rollup -c .rollup/cjs.js && node index-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UXtemple/style-to-css.git"
},
"keywords": [
"convert",
"style",
"object",
"css",
"uxtemple"
],
"author": "UXtemple <[email protected]>",
"contributors": [
"Darío Javier Cravero <[email protected]>",
"Tom Parandyk <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/UXtemple/style-to-css/issues"
},
"homepage": "https://github.com/UXtemple/style-to-css#readme",
"devDependencies": {
"babel": "^6.3.13",
"babel-cli": "^6.3.17",
"babel-plugin-external-helpers": "^6.4.0",
"babel-preset-es2015-rollup": "^1.1.1",
"rollup": "0.25.1",
"rollup-plugin-babel": "^2.3.9",
"tape": "^4.4.0"
},
"dependencies": {
"to-slug-case": "^1.0.0"
},
"version": "1.0.3"
}