UNPKG

4.61 kBJSONView Raw
1{
2 "name": "radium",
3 "version": "0.23.0",
4 "description": "A set of tools to manage inline styles on React elements",
5 "main": "index.js",
6 "module": "es/index.js",
7 "jsnext:main": "es/index.js",
8 "sideEffects": false,
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/formidablelabs/radium.git"
12 },
13 "homepage": "https://github.com/formidablelabs/radium",
14 "bugs": "https://github.com/formidablelabs/radium/issues",
15 "directories": {
16 "example": "examples"
17 },
18 "scripts": {
19 "preversion": "npm test && npm run lint",
20 "version": "npm run build",
21 "postversion": "publishr postversion -V",
22 "postpublish": "publishr postpublish -V",
23 "version-dry-run": "publishr dry-run -V",
24 "build": "npm run clean && builder concurrent --buffer build-lib build-dist build-es",
25 "build-babel": "babel src --ignore \"/__tests__/,/__mocks__/\"",
26 "build-lib": "builder run --env \"{\\\"BABEL_ENV\\\":\\\"commonjs\\\"}\" build-babel -- -d lib",
27 "build-dist-dev": "webpack",
28 "build-dist-prod": "webpack --config=webpack.config.minified.js",
29 "build-dist": "builder concurrent --buffer build-dist-dev build-dist-prod",
30 "build-examples": "webpack --config examples/webpack.config.js",
31 "build-es": "builder run build-babel -- -d es",
32 "clean": "rimraf lib es dist",
33 "examples": "webpack-dev-server --config examples/webpack.config.js --no-info --content-base examples",
34 "examples-server": "babel-node examples/server.js",
35 "flow": "flow check",
36 "eslint": "eslint .",
37 "fixlint": "npm run eslint -- --fix",
38 "lint": "builder concurrent --buffer eslint flow",
39 "start": "builder run --env \"{\\\"BABEL_ENV\\\":\\\"commonjs\\\"}\" examples-server",
40 "test-node": "mocha \"test/**/*-test.js\"",
41 "test-node-dev": "mocha --watch \"test/**/*-test.js\"",
42 "test-frontend": "karma start",
43 "test-frontend-coverage": "karma start karma.conf.coverage.js",
44 "test-frontend-ie": "karma start karma.conf.ie.js",
45 "test-frontend-dev": "karma start --no-single-run --auto-watch",
46 "test": "npm run test-node && npm run test-frontend",
47 "test-coverage": "npm run test-node && npm run test-frontend-coverage",
48 "test-ie": "npm run test-node && npm run test-frontend-ie",
49 "test-dev": "builder concurrent test-node-dev test-frontend-dev",
50 "universal": "builder concurrent start examples",
51 "update-prefix-data": "babel-node scripts/update-prefix-data.js && eslint --fix src/prefix-data",
52 "watch-lib": "npm run build-lib -- --watch"
53 },
54 "license": "MIT",
55 "dependencies": {
56 "exenv": "^1.2.1",
57 "inline-style-prefixer": "^4.0.0",
58 "prop-types": "^15.5.8"
59 },
60 "peerDependencies": {
61 "react": "^15.3.0 || ^16.0.0"
62 },
63 "devDependencies": {
64 "babel-eslint": "^7.1.1",
65 "caniuse-api": "^2.0.0",
66 "chai": "^3.5.0",
67 "color": "^1.0.3",
68 "core-js": "^2.5.3",
69 "coveralls": "^2.12.0",
70 "eslint": "^3.17.1",
71 "eslint-plugin-flow-vars": "^0.5.0",
72 "eslint-plugin-prettier": "^2.0.1",
73 "eslint-plugin-react": "^6.10.0",
74 "express": "^4.15.2",
75 "express-http-proxy": "^0.11.0",
76 "flow-bin": "^0.53.1",
77 "inject-loader": "^3.0.1",
78 "isparta-loader": "^2.0.0",
79 "karma": "^2.0.0",
80 "karma-babel-preprocessor": "^6.0.1",
81 "karma-chrome-launcher": "^2.2.0",
82 "karma-coverage": "^1.1.1",
83 "karma-ie-launcher": "^1.0.0",
84 "karma-mocha": "^1.3.0",
85 "karma-mocha-reporter": "^2.2.2",
86 "karma-sinon-chai": "^1.2.4",
87 "karma-webpack": "^2.0.3",
88 "mocha": "^3.2.0",
89 "node-libs-browser": "^2.0.0",
90 "nodemon": "^1.11.0",
91 "object-assign": "^4.1.1",
92 "prettier": "^0.22.0",
93 "react": "^16.0.0",
94 "react-dom": "^16.0.0",
95 "react-test-renderer": "^16.0.0",
96 "sinon": "^1.17.7",
97 "sinon-chai": "^2.8.0",
98 "webpack-dev-server": "^2.11.1",
99 "babel-cli": "^6.24.0",
100 "babel-core": "^6.24.0",
101 "babel-loader": "^7.1.2",
102 "babel-plugin-transform-decorators-legacy": "^1.3.4",
103 "babel-preset-env": "^1.6.1",
104 "babel-preset-react": "^6.23.0",
105 "babel-preset-stage-1": "^6.22.0",
106 "builder": "^3.2.3",
107 "publishr": "^1.0.0",
108 "rimraf": "^2.6.1",
109 "webpack": "^3.10.0"
110 },
111 "publishr": {
112 "dependencies": [
113 "^babel-",
114 "^builder$",
115 "^publishr$",
116 "^rimraf$",
117 "^webpack"
118 ],
119 "files": {
120 ".npmignore": ".npmignore.publishr"
121 },
122 "scripts": {
123 "postinstall": ""
124 }
125 },
126 "_publishr": [
127 {
128 "created": true,
129 "path": ".npmignore"
130 },
131 {
132 "created": false,
133 "path": "package.json"
134 }
135 ]
136}
\No newline at end of file