-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 821 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 821 Bytes
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
{
"version": "0.1.1",
"name": "babel-plugin-styled-components-ssr",
"description": "Add server-side rendering support to styled-components",
"repository": "https://github.com/styled-components/babel-plugin-styled-components-ssr",
"author": "Max Stoiber",
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"jest": "^17.0.3"
},
"scripts": {
"clean": "rm -rf lib",
"build": "babel src -d lib",
"test": "jest",
"test:watch": "npm run test -- --watch",
"prepublish": "npm run clean && npm run build"
},
"keywords": [
"styled-components",
"css-in-js",
"babel-plugin",
"server-side rendering",
"ssr"
],
"dependencies": {
"babel-template": "^6.16.0"
}
}