-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.44 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
{
"name": "find-my-el",
"version": "2.0.2",
"description": "Locates the DOM element closest to a given set of coordinates",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"unpkg": "dist/index.umd.min.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"build": "bili",
"test": "jest",
"test:watch": "jest --watchAll",
"example": "poi --serve",
"example:build": "rm -rf example/dist && poi --prod",
"example:deploy": "npm run example:build && gh-pages -d example/dist",
"version": "npm run example:deploy"
},
"keywords": [
"DOM",
"closest",
"find",
"coordinates"
],
"author": "Collin Henderson <[email protected]>",
"license": "MIT",
"repository": "https://github.com/syropian/find-my-el",
"bili": {
"input": "src/index.ts",
"output": {
"format": [
"cjs",
"umd-min",
"es"
],
"moduleName": "FindMyEl"
}
},
"poi": {
"entry": "example/index.js",
"output": {
"dir": "example/dist",
"publicUrl": "/find-my-el/"
}
},
"devDependencies": {
"@types/jest": "^24.0.18",
"bili": "^4.8.1",
"gh-pages": "^2.1.1",
"jest": "^24.9.0",
"poi": "^12.7.2",
"rollup-plugin-typescript2": "^0.24.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3",
"vue": "^2.6.10",
"vue-draggable-resizable": "^1.7.1",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {}
}