-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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": "responsive-styles",
"version": "0.2.0",
"description": "Use arrays as values to specify mobile-first responsive styles for CSS-in-JS projects",
"license": "MIT",
"repository": "github:rafaelrinaldi/responsive-styles",
"main": "dist/responsiveStyles.umd.js",
"jsnext:main": "dist/responsiveStyles.es.js",
"module": "dist/responsiveStyles.es.js",
"keywords": [
"aphrodite",
"css-in-js",
"emotion",
"glamor",
"rebass",
"styled-system"
],
"scripts": {
"build": "rollup -c",
"test": "NODE_ENV=test prettier-standard index.js && jest --verbose",
"start": "NODE_ENV=development parcel examples/index.html -p 8000"
},
"files": [
"dist"
],
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest-cli": "^23.5.0",
"prettier-standard": "^8.0.1",
"rollup": "^0.65.0",
"rollup-plugin-babel": "^3.0.7"
},
"optionalDependencies": {
"emotion": "^9.0.2",
"glamor": "^2.20.40",
"combine-same-keys": "^0.1.0",
"aphrodite": "^1.2.5",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"parcel-bundler": "^1.6.2"
}
}