-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.06 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
{
"name": "instance-verification",
"version": "1.1.1",
"description": "With this module you can avoid typical typescript errors, such as making mistakes when you are selecting elements from the DOM",
"main": "dist/instance-verification",
"umd:main": "dist/instance-verification.umd.js",
"module": "dist/instance-verification.mjs",
"source": "dist/instance-verification.js",
"typings": "dist/instance-verification.d.ts",
"browser": "dist/instance-verification.js",
"homepage": "https://github.com/JuanchiiBM/instance-verification",
"repository": {
"type": "git",
"url": "https://github.com/JuanchiiBM/instance-verification"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"build": "microbundle dist/*js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"typescript",
"instance",
"verification"
],
"author": "Juan Carlos Benitez Mingrone <juanchibenitez65@gmail.com>",
"license": "MIT",
"devDependencies": {
"microbundle": "^0.15.1"
},
"files": ["dist", "package.json", "README.md"]
}