-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.26 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.26 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-styled-ui",
"version": "0.0.9",
"description": "A Set of React Components that use styled-components",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib dist es .nyc_output",
"test": "cross-env BABEL_ENV=commonjs NODE_ENV=test jest --coverage",
"test:watch": "npm test -- --watchAll",
"test:cov": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"check:src": "npm run lint && npm run test",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src -d lib",
"build:es": "cross-env BABEL_ENV=es babel src -d es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack --env.prod src/index.js dist/react-styled-ui.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack --env.prod src/index.js dist/react-styled-ui.min.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"prepublish": "npm run clean && npm run check:src && npm run build",
"flow": "flow check",
"lint": "eslint src test build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsolutions-dev/react-styled-ui.git"
},
"keywords": [
"react",
"styled",
"styled-components",
"presentational components",
"ui",
"layout"
],
"authors": [
"Matteo Basso (https://github.com/mbasso)",
"Adriano Buscema (https://github.com/adribusc)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/itsolutions-dev/react-styled-ui/issues"
},
"homepage": "https://github.com/itsolutions-dev/react-styled-ui",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.3",
"babel-loader": "7.0.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.22.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-flow": "6.23.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.24.1",
"compression-webpack-plugin": "0.4.0",
"coveralls": "2.13.1",
"cross-env": "4.0.0",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-config-prettier": "1.7.0",
"eslint-plugin-flowtype": "2.32.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.3",
"flow-bin": "0.45.0",
"istanbul": "0.4.5",
"jest": "20.0.4",
"jsdom": "10.1.0",
"nyc": "10.3.0",
"prettier": "1.2.2",
"prettier-eslint": "6.1.2",
"react": "15.5.4",
"react-addons-perf": "15.4.2",
"react-dom": "15.5.4",
"react-test-renderer": "15.5.4",
"rimraf": "2.6.1",
"styled-components": "2.1.2",
"styled-components-test-utils": "0.3.0",
"webpack": "3.0.0"
},
"peerDependencies": {
"react": "^15.5.4",
"styled-components": "^2.1.2"
},
"npmName": "react-styled-ui",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"browserify": {
"transform": [
"loose-envify"
]
}
}