-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 928 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
39
{
"name": "dababy",
"version": "1.1.0",
"description": "Data binding so simple even DaBaby could do it!",
"main": "dist/dababy.min.js",
"browser": "dist/dababy.min.js",
"scripts": {
"dev": "esbuild src/dababy.ts --bundle --global-name=Dababy --watch --outfile=dist/dababy.js",
"build": "sh build.sh",
"cleanup": "prettier --write src --parser typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aidenybai/dababy.git"
},
"keywords": [
"dababy",
"bind",
"dom",
"javascript",
"library",
"web",
"ui",
"browser"
],
"author": "Aiden Bai <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aidenybai/dababy/issues"
},
"homepage": "https://github.com/aidenybai/dababy",
"engines": {
"node": ">=6.4.0"
},
"devDependencies": {
"esbuild": "^0.12.2",
"typescript": "^4.2.4"
}
}