-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 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
{
"name": "vanilla-js-match-height",
"version": "1.0.7",
"description": "A jQuery free equivilent of jQuery match height, a simple, lightweight way to make elements the same height.",
"main": "dist/index.js",
"types": "dist/app.d.ts",
"files": [
"dist/*",
"README.md",
"package.json"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile-test-watch": "esbuild --bundle test/index.ts --outfile=test/dist/test.js --watch",
"compile-test-production": "esbuild --bundle test/index.ts --outfile=test/dist/test.js --minify",
"compile-watch": "esbuild src/app.ts --outfile=dist/index.js --watch",
"compile-production": "esbuild src/app.ts --outfile=dist/index.js --minify",
"tsc": "tsc --emitDeclarationOnly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JoshDonnell/vanilla-js-match-height.git"
},
"keywords": [
"match-height",
"js",
"js-match-height",
"vanilla-js"
],
"author": "Josh Donnell",
"license": "ISC",
"bugs": {
"url": "https://github.com/JoshDonnell/vanilla-js-match-height/issues"
},
"homepage": "https://github.com/JoshDonnell/vanilla-js-match-height#readme",
"devDependencies": {
"esbuild": "^0.15.6",
"tsc": "^2.0.4"
}
}