-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "styled-plus",
"version": "0.2.1",
"description": "Extreme lightweight CSS parser for stealing rules from stylesheets (without adding the stylesheet to your bundle), to compose into Styled Components or anywhere else you might be doing CSS in JS.",
"author": "jed@dataverse.me",
"repository": "https://github.com/glortho/styled-import",
"license": "MIT",
"main": "index.js",
"scripts": {
"copy-test-files": "mkdir node_modules/_styled_tester > /dev/null 2>&1; cp macro/__tests__/sample.css node_modules/_styled_tester > /dev/null 2>&1",
"dev": "./scripts/dev.sh",
"prep": "./scripts/prepublish.sh",
"test": "npm run copy-test-files; jest"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.test.js"
]
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-macros": "^2.4.3",
"babel-plugin-tester": "^5.5.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"css": "^2.2.4",
"jest": "^23.6.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"styled-components": "^4.1.3",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
}
}