-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
79 lines (79 loc) · 2.49 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
{
"name": "react-optimized-image",
"version": "0.4.1",
"description": "React component for serving optimized images.",
"keywords": [
"react",
"component",
"images",
"image",
"optimize"
],
"author": "Cyril Wanner <[email protected]>",
"homepage": "https://github.com/cyrilwanner/react-optimized-image#readme",
"license": "MIT",
"scripts": {
"prebuild": "rimraf lib",
"build": "npm run build:components && npm run build:plugin && npm run build:types",
"build:components": "babel src --out-dir lib --extensions \".ts,.tsx\" --config-file ./.babelrc.components",
"build:components:watch": "npm run build:components -- --watch",
"build:plugin": "babel src/plugin --out-dir lib/plugin --extensions \".ts\" --config-file ./.babelrc.plugin",
"build:plugin:watch": "npm run build:plugin -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"lint": "tsc --noEmit && eslint . --ext .ts --ext .tsx --ext .js",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"test:watch": "npm test -- --watch"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.1",
"@types/app-root-path": "^1.2.4",
"@types/babel-plugin-syntax-jsx": "^6.18.0",
"@types/clone": "^0.1.30",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.36",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"babel-plugin-tester": "^9.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^2.5.0",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"react": "^16.13.1",
"rimraf": "^3.0.2",
"typescript": "^3.9.5"
},
"dependencies": {
"app-root-path": "^3.0.0",
"babel-explode-module": "^3.0.0",
"babel-file-loader": "^2.0.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"clone": "^2.1.2"
},
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"plugin.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cyrilwanner/react-optimized-image.git"
},
"bugs": {
"url": "https://github.com/cyrilwanner/react-optimized-image/issues"
}
}