UNPKG

3.29 kBJSONView Raw
1{
2 "name": "radium",
3 "version": "0.18.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": "node -e \"process.exit(process.platform === 'win32' ? 0 : 1)\" || flow check",
22 "lib": "npm run babel && rimraf lib/__tests__ lib/__mocks__",
23 "lint": "eslint src examples --ext .js --ext .jsx && npm run flow",
24 "postinstall": "cd lib || npm run lib",
25 "prepublish": "npm run lib && npm run dist && not-in-publish || (npm test && npm run lint && npm run deps-fix)",
26 "postpublish": "npm run deps-restore",
27 "start": "./node_modules/.bin/babel-node examples/server.js",
28 "test": "karma start",
29 "test-coverage": "karma start karma.conf.coverage.js",
30 "test-ie": "karma start karma.conf.ie.js",
31 "test-dev": "karma start --no-single-run --auto-watch",
32 "universal": "concurrent --kill-others \"npm start\" \"npm run examples\""
33 },
34 "license": "MIT",
35 "dependencies": {
36 "array-find": "^1.0.0",
37 "exenv": "^1.2.0",
38 "inline-style-prefixer": "^1.0.3",
39 "rimraf": "^2.4.0"
40 },
41 "devDependencies": {
42 "babel-eslint": "^6.1.0",
43 "babel-loader": "^6.2.0",
44 "chai": "^3.0.0",
45 "color": "^0.11.3",
46 "concurrently": "^2.2.0",
47 "coveralls": "^2.11.2",
48 "eslint": "^2.5.3",
49 "eslint-plugin-flow-vars": "^0.4.0",
50 "eslint-plugin-react": "^5.0.1",
51 "express": "^4.13.3",
52 "express-http-proxy": "^0.7.2",
53 "flow-bin": "^0.20.1",
54 "in-publish": "^2.0.0",
55 "inject-loader": "^2.0.0",
56 "isparta-loader": "^2.0.0",
57 "karma": "^1.1.0",
58 "karma-babel-preprocessor": "^6.0.1",
59 "karma-coverage": "^1.0.0",
60 "karma-ie-launcher": "^1.0.0",
61 "karma-mocha": "^1.1.1",
62 "karma-mocha-reporter": "^2.0.3",
63 "karma-phantomjs-launcher": "^1.0.1",
64 "karma-phantomjs-shim": "^1.0.0",
65 "karma-sinon-chai": "^1.2.1",
66 "karma-webpack": "^1.7.0",
67 "lodash.merge": "^4.0.2",
68 "lolex": "^1.4.0",
69 "mocha": "^2.2.5",
70 "node-libs-browser": "^0.5.2",
71 "nodemon": "^1.4.1",
72 "object-assign": "^4.0.1",
73 "phantomjs-prebuilt": "^2.1.7",
74 "react": "^15.0.1",
75 "react-addons-test-utils": "^15.0.1",
76 "react-dom": "^15.0.1",
77 "sinon": "^1.15.3",
78 "sinon-chai": "^2.8.0",
79 "webpack": "^1.9.11",
80 "webpack-dev-server": "^1.9.0",
81 "babel-cli": "^6.3.15",
82 "babel-core": "^6.3.15",
83 "babel-plugin-add-module-exports": "^0.2.0",
84 "babel-plugin-transform-decorators-legacy": "^1.2.0",
85 "babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
86 "babel-preset-es2015-loose": "^6.1.3",
87 "babel-preset-react": "^6.11.1",
88 "babel-preset-stage-1": "^6.3.13"
89 }
90}