-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 860 Bytes
/
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
{
"name": "modal-focus-trap",
"version": "0.1.0",
"license": "MIT",
"description": "A simple way to set up a focus trap in a DOM node",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"modal focus trap",
"trap-focus",
"focus-trap",
"focustrap"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fknussel/modal-focus-trap.git"
},
"author": {
"name": "Federico Knüssel",
"email": "fknussel@gmail.com"
},
"scripts": {
"build": "tsc",
"test": "jest --config=jest.config.json",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@types/jest": "^25.1.3",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.7",
"jest": "^25.1.0",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"dependencies": {
"lodash": "^4.17.15"
}
}