UNPKG

3.43 kBJSONView Raw
1{
2 "name": "radium",
3 "version": "0.19.1",
4 "description": "A set of tools to manage inline styles on React elements",
5 "main": "lib/index.js",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/formidablelabs/radium.git"
9 },
10 "homepage": "https://github.com/formidablelabs/radium",
11 "bugs": "https://github.com/formidablelabs/radium/issues",
12 "directories": {
13 "example": "examples"
14 },
15 "scripts": {
16 "babel": "rimraf lib && babel src/ -d lib/",
17 "dist": "webpack && webpack --config=webpack.config.minified.js",
18 "examples": "webpack-dev-server --config examples/webpack.config.js --no-info --content-base examples/",
19 "deps-fix": "babel-node npm-scripts/move-babel-to-dependencies.js",
20 "deps-restore": "git checkout package.json",
21 "flow": "flow check",
22 "lib": "npm run babel && rimraf lib/__tests__ lib/__mocks__",
23 "eslint": "eslint src examples --ext .js --ext .jsx",
24 "fixlint": "npm run eslint -- --fix",
25 "lint": "npm run eslint && npm run flow",
26 "postinstall": "cd lib || npm run lib",
27 "prepublish": "npm run lib && npm run dist && not-in-publish || (npm test && npm run lint && npm run deps-fix)",
28 "postpublish": "npm run deps-restore",
29 "start": "node_modules/.bin/babel-node examples/server.js",
30 "test": "karma start",
31 "test-coverage": "karma start karma.conf.coverage.js",
32 "test-ie": "karma start karma.conf.ie.js",
33 "test-dev": "karma start --no-single-run --auto-watch",
34 "universal": "concurrently --kill-others \"npm start\" \"npm run examples\""
35 },
36 "license": "MIT",
37 "dependencies": {
38 "array-find": "^1.0.0",
39 "exenv": "^1.2.1",
40 "inline-style-prefixer": "^2.0.5",
41 "prop-types": "^15.5.8",
42 "rimraf": "^2.6.1"
43 },
44 "peerDependencies": {
45 "react": "^15.3.0"
46 },
47 "devDependencies": {
48 "babel-eslint": "^7.1.1",
49 "babel-loader": "^6.4.0",
50 "chai": "^3.5.0",
51 "color": "^1.0.3",
52 "concurrently": "^3.4.0",
53 "coveralls": "^2.12.0",
54 "eslint": "^3.17.1",
55 "eslint-plugin-flow-vars": "^0.5.0",
56 "eslint-plugin-prettier": "^2.0.1",
57 "eslint-plugin-react": "^6.10.0",
58 "express": "^4.15.2",
59 "express-http-proxy": "^0.11.0",
60 "flow-bin": "^0.41.0",
61 "in-publish": "^2.0.0",
62 "inject-loader": "^3.0.0-beta4",
63 "isparta-loader": "^2.0.0",
64 "karma": "^1.5.0",
65 "karma-babel-preprocessor": "^6.0.1",
66 "karma-coverage": "^1.1.1",
67 "karma-ie-launcher": "^1.0.0",
68 "karma-mocha": "^1.3.0",
69 "karma-mocha-reporter": "^2.2.2",
70 "karma-phantomjs-launcher": "^1.0.4",
71 "karma-phantomjs-shim": "^1.4.0",
72 "karma-sinon-chai": "^1.2.4",
73 "karma-webpack": "^2.0.3",
74 "lodash.merge": "^4.6.0",
75 "mocha": "^3.2.0",
76 "node-libs-browser": "^2.0.0",
77 "nodemon": "^1.11.0",
78 "object-assign": "^4.1.1",
79 "phantomjs-prebuilt": "^2.1.14",
80 "prettier": "^0.22.0",
81 "react": "^15.4.2",
82 "react-addons-test-utils": "^15.4.2",
83 "react-dom": "^15.4.2",
84 "sinon": "^1.17.7",
85 "sinon-chai": "^2.8.0",
86 "webpack": "^2.2.1",
87 "webpack-dev-server": "^2.4.2",
88 "babel-cli": "^6.24.0",
89 "babel-core": "^6.24.0",
90 "babel-plugin-add-module-exports": "^0.2.1",
91 "babel-plugin-transform-decorators-legacy": "^1.3.4",
92 "babel-plugin-transform-es2015-modules-commonjs": "^6.24.0",
93 "babel-preset-es2015": "^6.24.0",
94 "babel-preset-react": "^6.23.0",
95 "babel-preset-stage-1": "^6.22.0"
96 }
97}