-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 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
{
"name": "@kakekomu/react-modal",
"version": "1.3.0",
"description": "React-Modal hook",
"main": "lib/index.js",
"module": "lib/index.es.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"build": "tsc",
"clean": "rm -rf ./lib",
"tsc": "tsc --module commonjs",
"format": "prettier --write ./src/**/*.ts",
"lint": "eslint 'src/**/*.ts'",
"example": "webpack-dev-server --config ./example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kakekomu/react-modal.git"
},
"keywords": [],
"author": "Gergely Szabo <gege251@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kakekomu/react-modal/issues"
},
"homepage": "https://github.com/kakekomu/react-modal#readme",
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"@typescript-eslint/eslint-plugin": "^3.5.0",
"@typescript-eslint/parser": "^3.5.0",
"eslint": "^7.3.1",
"jest": "^26.1.0",
"prettier": "^2.0.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^26.1.1",
"ts-loader": "^7.0.5",
"typescript": "^3.9.6",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"peerDependencies": {
"react": "^16.8.6"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
}
}