-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.51 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.51 KB
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
{
"name": "react-hd-image",
"version": "1.0.1",
"description": "React component for serving high resolution images depends on display.",
"main": "dist/index.js",
"scripts": {
"test": "jest --bail --coverage --config jest.config.js",
"test:watch": "jest --watch --coverage --config jest.config.js",
"test:badges": "jest-coverage-badges",
"start": "rollup -c rollup.dev.config.js",
"clean": "rm -rf dist",
"build": "rimraf dist && mkdirp dist && rollup -c rollup.prod.config.js",
"lint": "eslint -c .eslintrc.js --fix './src/**/*.ts{,x}'",
"prepare": "npm run build",
"precommit": "npm run lint && npm t && npm run test:badges",
"docs": "NODE_ENV=production npm start && push-dir --dir=demo --branch=gh-pages",
"semantic-release": "semantic-release"
},
"keywords": [
"react",
"reactjs",
"react-component",
"image",
"retina",
"hd",
"high-density",
"react-hd-image"
],
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"author": "wonism <yocee57@gmail.com> (https://wonism.github.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wonism/react-hd-image.git"
},
"bugs": {
"url": "https://github.com/wonism/react-hd-image/issues"
},
"homepage": "https://github.com/wonism/react-hd-image",
"peerDependencies": {
"react": ">=15.3.0",
"react-dom": ">=15.3.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/enzyme": "^3.10.4",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/jest": "^25.1.1",
"@types/node": "^13.5.3",
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"@types/styled-components": "^4.4.2",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"css-mediaquery": "^0.1.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-coverage-badges": "^1.1.2",
"jsdom": "^16.0.1",
"mkdirp": "^1.0.3",
"prettier-eslint-cli": "^5.0.0",
"push-dir": "^0.4.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.1",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"semantic-release": "^17.0.2",
"styled-components": "^5.0.0",
"ts-jest": "^25.1.0",
"typescript": "^3.7.5"
},
"dependencies": {}
}