-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.83 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
{
"name": "super-image",
"version": "2.4.0",
"description": "React component that render `<img>` with nicer interface",
"main": "lib/index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf lib && NODE_ENV=development babel src --out-dir lib",
"test": "eslint src && karma start karma.conf.js --single-run",
"codecov": "codecov"
},
"repository": "openfresh/super-image",
"keywords": [
"react",
"object-fit",
"image"
],
"author": "openfresh",
"license": "MIT",
"bugs": {
"url": "https://github.com/openfresh/super-image/issues"
},
"homepage": "https://github.com/openfresh/super-image#readme",
"typings": "type/index.d.ts",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-power-assert": "^2.0.0",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"codecov": "^3.0.4",
"eslint": "^5.3.0",
"eslint-config-fresh": "^3.0.0",
"eslint-config-fresh-react": "^3.0.0",
"eslint-config-xo-react": "^0.17.0",
"eslint-config-xo-space": "^0.20.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"karma": "^3.0.0",
"karma-browserify": "^5.3.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"mocha": "^5.2.0",
"power-assert": "^1.6.0",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2"
}
}