forked from FormidableLabs/radium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
137 lines (137 loc) · 4.77 KB
/
package.json
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "@instacart/radium",
"version": "0.26.6",
"description": "A set of tools to manage inline styles on React elements",
"main": "index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/instacart/radium.git"
},
"homepage": "https://github.com/instacart/radium",
"bugs": "https://github.com/instacart/radium/issues",
"directories": {
"example": "examples"
},
"scripts": {
"postinstall": "cd lib || yarn run build",
"preversion": "npm test && yarn run lint",
"version": "yarn run build",
"postversion": "publishr postversion -V",
"postpublish": "publishr postpublish -V",
"version-dry-run": "publishr dry-run -V",
"build": "yarn run clean && builder concurrent --buffer build-lib build-dist build-es",
"build-babel": "babel src --ignore \"**/__tests__/*\",\"**/__mocks__/*\"",
"build-lib": "builder run --env \"{\\\"BABEL_ENV\\\":\\\"commonjs\\\"}\" build-babel -- -d lib --verbose",
"build-dist-dev": "webpack",
"build-dist-prod": "webpack --config=webpack.config.minified.js",
"build-dist": "builder concurrent --buffer build-dist-dev build-dist-prod",
"build-examples": "webpack --config examples/webpack.config.js",
"build-es": "builder run build-babel -- -d es",
"clean": "rimraf lib es dist",
"examples": "webpack-dev-server --config examples/webpack.config.js --no-info --content-base examples",
"examples-server": "babel-node examples/server.js",
"flow": "flow check",
"eslint": "eslint .",
"fixlint": "yarn run eslint -- --fix",
"lint": "builder concurrent --buffer eslint flow",
"start": "builder run --env \"{\\\"BABEL_ENV\\\":\\\"commonjs\\\"}\" examples-server",
"test-node": "mocha \"test/**/*-test.js\"",
"test-node-dev": "mocha --watch \"test/**/*-test.js\"",
"test-frontend": "karma start",
"test-frontend-coverage": "karma start karma.conf.coverage.js",
"test-frontend-ie": "karma start karma.conf.ie.js",
"test-frontend-dev": "karma start --no-single-run --auto-watch",
"test": "yarn run test-node && yarn run test-frontend",
"test-coverage": "yarn run test-node && yarn run test-frontend-coverage",
"test-ie": "yarn run test-node && yarn run test-frontend-ie",
"test-dev": "builder concurrent test-node-dev test-frontend-dev",
"universal": "builder concurrent start examples",
"update-prefix-data": "babel-node scripts/update-prefix-data.js && eslint --fix src/prefix-data",
"watch-lib": "yarn run build-lib -- --watch"
},
"license": "MIT",
"dependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-transform-destructuring": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"builder": "^5.0.0",
"exenv": "^1.2.1",
"hoist-non-react-statics": "3.3.2",
"inline-style-prefixer": "^4.0.0",
"prop-types": "^15.5.8",
"publishr": "^1.0.0",
"rimraf": "^3.0.2",
"webpack": "^4.44.2"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.12.1",
"@babel/node": "^7.0.0",
"babel-plugin-istanbul": "^6.0.0",
"caniuse-api": "^3.0.0",
"chai": "^4.2.0",
"color": "^3.1.3",
"coveralls": "^3.1.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^7.16.0",
"eslint-plugin-flowtype": "5.2.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "4.2.0",
"express": "^4.15.2",
"express-http-proxy": "^1.6.2",
"flow-bin": "^0.100.0",
"inject-loader": "^4.0.1",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"karma": "^5.2.3",
"karma-babel-preprocessor": "^8.0.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.2",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^4.0.2",
"mocha": "^8.2.1",
"node-libs-browser": "^2.0.0",
"nodemon": "^2.0.6",
"object-assign": "^4.1.1",
"prettier": "^2.0.0",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-test-renderer": "^16.8.3",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.1.11"
},
"publishr": {
"dependencies": [
"^babel-",
"^@babel/",
"^builder$",
"^publishr$",
"^rimraf$",
"^webpack"
],
"files": {
".npmignore": ".npmignore.publishr"
},
"scripts": {
"postinstall": ""
}
}
}