-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "woowahan-jsx",
"version": "1.1.3",
"browser": "./lib/index.js",
"description": "Yet Another Simple JSX using tagged template",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"counter": "parcel examples/counter/index.html",
"recursion": "parcel examples/recursion/index.html",
"dom-list": "parcel examples/dom-list/index.html",
"input": "parcel examples/input/index.html",
"build": "tsc",
"deploy": "npm run build && npm publish"
},
"alias": {
"src": "./src"
},
"repository": "git+https://github.com/woowa-techcamp-2021/woowahan-jsx.git",
"contributors": [
"gomjellie <[email protected]> (https://gomjellie.github.io/me)",
"윤민호 <[email protected]>",
"Neo <[email protected]> (https://zillinks.com)"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "ISC",
"bugs": {
"url": "https://github.com/woowa-techcamp-2021/woowahan-jsx/issues"
},
"homepage": "https://github.com/woowa-techcamp-2021/woowahan-jsx#readme",
"devDependencies": {},
"dependencies": {
"typescript": "^4.3.5"
},
"files": [
"lib"
]
}