UNPKG

3.58 kBJSONView Raw
1{
2 "name": "style-it",
3 "version": "2.1.4",
4 "description": "Component for writing plaintext CSS in React apps -- isomorphic, scoped, FOUC-free, fully featured, CSS-in-JS",
5 "main": "dist/style-it.js",
6 "author": "buildbreakdo",
7 "license": "MIT",
8 "repository": {
9 "type": "git",
10 "url": "https://github.com/buildbreakdo/style-it.git"
11 },
12 "bugs": {
13 "url": "https://github.com/buildbreakdo/style-it/issues"
14 },
15 "homepage": "https://github.com/buildbreakdo/style-it",
16 "scripts": {
17 "build": "npm run build:standalone:dev && npm run build:standalone:production && npm run build:umd:dev && npm run build:umd:production",
18 "build:standalone:dev": "webpack --standalone && shx sed -i 's/exports.default/module.exports/' dist/style-it-standalone.js",
19 "build:standalone:production": "uglifyjs --compress --mangle -- dist/style-it-standalone.js >> dist/style-it-standalone.min.js",
20 "build:umd:dev": "webpack && babel src --out-dir lib",
21 "build:umd:production": "NODE_ENV='production' webpack && babel src --out-dir lib",
22 "prebuild": "rimraf dist lib",
23 "prepublish": "npm run build && npm run test",
24 "watch": "webpack --watch",
25 "lint": "eslint .",
26 "test": "yarn test:jest && NODE_ENV=production yarn test:jest",
27 "test:jest": "jest --runInBand || true",
28 "test:watch": "jest --watch --verbose=false",
29 "coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
30 },
31 "engines": {
32 "node": ">=6"
33 },
34 "jest": {
35 "automock": false,
36 "bail": true
37 },
38 "keywords": [
39 "react-style",
40 "style-it",
41 "react",
42 "scope",
43 "scoped",
44 "inline",
45 "embed",
46 "embedded",
47 "style-element",
48 "style",
49 "styles",
50 "styling",
51 "css",
52 "classes",
53 "classname",
54 "classnames",
55 "util",
56 "utility",
57 "react-component",
58 "aphrodite",
59 "babel-plugin-css-in-js",
60 "bloody-react-styled",
61 "cess-loader",
62 "classy",
63 "csjs",
64 "css-loader",
65 "css-ns",
66 "cssx-loader",
67 "hyperstyles",
68 "es-css-modules",
69 "j2c",
70 "jsxstyle",
71 "radium",
72 "react-css-builder",
73 "react-css-components",
74 "react-css-modules",
75 "react-cxs",
76 "react-free-style",
77 "react-inline-css",
78 "react-inline",
79 "react-inline-style",
80 "react-jss",
81 "react-look",
82 "react-native-web",
83 "react-statics-styles",
84 "react-styl",
85 "react-styleable",
86 "react-stylematic",
87 "react-theme",
88 "react-vstyle",
89 "reactcss",
90 "scope-styles",
91 "smart-css",
92 "stilr",
93 "styling",
94 "stile",
95 "react-media-queries"
96 ],
97 "devDependencies": {
98 "babel-cli": "^6.10.1",
99 "babel-core": "^6.9.1",
100 "babel-eslint": "^6.0.4",
101 "babel-jest": "^12.1.0",
102 "babel-loader": "^6.2.4",
103 "babel-plugin-add-module-exports": "^0.2.1",
104 "babel-polyfill": "^6.9.1",
105 "babel-preset-es2015": "^6.9.0",
106 "babel-preset-react": "^6.5.0",
107 "babel-preset-stage-0": "^6.5.0",
108 "babel-preset-stage-1": "^6.5.0",
109 "babel-standalone": "^6.10.3",
110 "coveralls": "^2.11.12",
111 "eslint": "^2.13.0",
112 "eslint-plugin-react": "^5.2.2",
113 "jest": "^23.6.0",
114 "jest-cli": "^23.6.0",
115 "npm-run-all": "^2.3.0",
116 "react": "^15.2.1",
117 "react-addons-test-utils": "^15.3.0",
118 "react-dom": "^15.4.2",
119 "react-test-renderer": "^15.3.0",
120 "react-tools": "^0.13.3",
121 "rimraf": "^2.5.2",
122 "shx": "^0.1.4",
123 "stylelint": "^7.9.0",
124 "uglify-js": "^2.7.0",
125 "util": "^0.10.3",
126 "webpack": "^1.13.1"
127 },
128 "dependencies": {
129 "react-lib-adler32": "^1.0.3"
130 }
131}