-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "react-image-service-worker",
"version": "1.0.11",
"description": "React component to fetch image resources via service workers",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production babel lib/ImageWorker.js --out-file index.js",
"prepublish": "npm run build",
"eslint": "node_modules/.bin/eslint -c ./.eslintrc.json ./lib/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fragm3/react-image-service-worker.git"
},
"keywords": [],
"author": "Shubham Gupta",
"license": "ISC",
"bugs": {
"url": "https://github.com/fragm3/react-image-service-worker/issues"
},
"homepage": "https://github.com/fragm3/react-image-service-worker#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-app": "^3.1.1",
"eslint": "^4.17.0",
"eslint-plugin-flowtype": "^2.42.0",
"eslint-plugin-react": "^7.6.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.2.2",
"flow-bin": "^0.64.0"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0",
"react-dom": "^15.0.0-0 || ^16.0.0-0"
}
}