-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.98 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
{
"name": "@jalik/react-lightbox",
"version": "1.0.12",
"description": "Light box component for React",
"main": "./dist/index.js",
"module": "./esm/index.js",
"esnext": "src/index.js",
"sideEffects": false,
"scripts": {
"build": "npm run build-cjs && npm run build-esm",
"build-cjs": "babel ./src -d ./dist",
"build-esm": "babel --config-file ./babel-esm.config.json ./src -d ./esm",
"clean": "rimraf ./dist ./esm",
"dev": "npm run dev-cjs",
"dev-cjs": "babel --watch ./src -d ./dist",
"dev-esm": "babel --watch --config-file ./babel-esm.config.json ./src -d ./dist",
"lint": "eslint --ext js,jsx .",
"lint-fix": "eslint --fix --ext js,jsx .",
"prepare": "npm run clean && npm run build && npm run lint",
"prepublishOnly": "npm test",
"test": "jest --passWithNoTests"
},
"keywords": [
"react",
"lightbox",
"image"
],
"author": {
"name": "Karl Stein",
"email": "[email protected]",
"url": "https://github.com/jalik"
},
"repository": {
"type": "git",
"url": "https://github.com/jalik/react-lightbox.git"
},
"bugs": {
"url": "https://github.com/jalik/react-lightbox/issues"
},
"license": "MIT",
"files": [
"/dist",
"/esm",
"/src"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.15.4",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.25.3",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.2.1",
"react": "^17.0.2",
"rimraf": "^3.0.2",
"typescript": "^4.4.3"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.0 || ^17.0.0"
}
}