forked from imgix/react-imgix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 4.99 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
138
139
140
141
142
143
144
145
{
"name": "react-imgix",
"version": "8.6.3",
"description": "React Component for displaying an image from Imgix",
"author": "Frederick Fogerty <[email protected]> (https://github.com/frederickfogerty)",
"contributors": [
"Frederick Fogerty <[email protected]> (https://github.com/frederickfogerty)",
"Max Kolyanov (https://github.com/maxkolyanov)",
"Sherwin Heydarbeygi <[email protected]> (https://github.com/sherwinski)",
"Baldur Helgason <[email protected]> (https://github.com/baldurh)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/imgix/react-imgix/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imgix/react-imgix.git"
},
"homepage": "https://github.com/imgix/react-imgix#readme",
"keywords": [
"react"
],
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib/*",
"es/*"
],
"scripts": {
"build": "npm run clean && npm run build:commonjs && npm run build:es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib --source-maps",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --source-maps",
"build:watch": "cross-env BABEL_ENV=es babel src --out-dir es --watch",
"clean": "rimraf lib es",
"prepublish": "npm run build",
"pretty": "prettier --write '{src,test}/**/*.{js,jsx}'",
"release": "standard-version",
"test:headless": "karma start config/karma/karmaConfigHeadless.js --singleRun",
"test:headless:watch": "karma start config/karma/karmaConfigHeadless.js",
"test:browser": "karma start config/karma/karmaConfigLocal.js --singleRun",
"test:browser:watch": "karma start config/karma/karmaConfigLocal.js",
"test:browser:ci": "karma start config/karma/karmaConfigHeadlessCI.js --singleRun",
"test:browser:browserstack": "karma start config/karma/karmaConfigBrowserStack.js --singleRun",
"test:browser:all": "npm run test:browser:ci && npm run test:browser:browserstack",
"test:watch": "jest --watch",
"test": "jest && npm run test:browser:all"
},
"peerDependencies": {
"prop-types": ">=15.5.6",
"react": ">=15",
"react-dom": ">=15"
},
"dependencies": {
"js-base64": "^2.3.2",
"react-measure": "2.1.3 - 2.2.5",
"shallowequal": "^1.1.0",
"warning": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/plugin-proposal-do-expressions": "7.5.0",
"@babel/plugin-proposal-export-default-from": "7.5.2",
"@babel/plugin-proposal-export-namespace-from": "7.5.2",
"@babel/plugin-proposal-function-bind": "7.2.0",
"@babel/plugin-proposal-function-sent": "7.5.0",
"@babel/plugin-proposal-json-strings": "7.2.0",
"@babel/plugin-proposal-logical-assignment-operators": "7.2.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.4.4",
"@babel/plugin-proposal-numeric-separator": "7.2.0",
"@babel/plugin-proposal-optional-chaining": "7.2.0",
"@babel/plugin-proposal-pipeline-operator": "7.5.0",
"@babel/plugin-proposal-throw-expressions": "7.2.0",
"@babel/plugin-syntax-dynamic-import": "7.2.0",
"@babel/plugin-syntax-import-meta": "7.2.0",
"@babel/plugin-transform-object-assign": "7.2.0",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"babel-loader": "8.0.6",
"babel-plugin-inline-package-json": "2.0.0",
"browserslist": "4.6.6",
"common-tags": "1.8.0",
"cross-env": "5.2.0",
"enzyme": "3.10.0",
"enzyme-adapter-react-16": "1.14.0",
"expect": "24.8.0",
"jest": "24.8.0",
"jest-extended": "0.11.2",
"jsuri": "1.3.1",
"karma": "4.2.0",
"karma-browserstack-launcher": "1.5.1",
"karma-chrome-launcher": "3.0.0",
"karma-firefox-launcher": "1.1.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.5",
"karma-safari-launcher": "1.0.0",
"karma-webpack": "4.0.2",
"mocha": "6.2.0",
"prettier": "1.18.2",
"puppeteer": "1.19.0",
"react": "16.8.6",
"react-addons-test-utils": "15.6.2",
"react-dom": "16.8.6",
"react-test-renderer": "16.8.6",
"read-pkg-up": "5.0.0",
"rimraf": "2.6.3",
"sinon": "7.3.2",
"skin-deep": "1.2.0",
"standard-version": "6.0.1",
"webpack": "4.38.0",
"webpack-cli": "3.3.6",
"webpack-dev-server": "3.7.2"
},
"jest": {
"roots": [
"<rootDir>/src/",
"<rootDir>/test/unit/"
],
"moduleDirectories": [
"node_modules",
"src"
],
"setupFilesAfterEnv": [
"<rootDir>/test/setupUnit.js"
]
},
"browserslist": [
"ie 11",
"last 1 edge versions",
"last 1 Chrome versions",
"last 1 Firefox versions",
"last 1 Safari versions",
"last 2 iOS versions",
"last 2 Android versions",
"not dead"
]
}