-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "cumbia",
"version": "0.0.11",
"description": "Cumbia aims to give you a thin layer between your HTML and JS. An opinionated way of creating components and craft a web page.",
"main": "cumbia",
"typings": "cumbia",
"directories": {
"example": "example"
},
"scripts": {
"test": "jest",
"dev:lib": "node scripts/esbuild.js --dev",
"dev:docs": "docsify serve docs",
"build:lib": "rm -f cumbia.d.ts && tsc && npm run test && node scripts/esbuild.js",
"check:typescript": "tsc",
"check:size": "bundlesize"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neomaxzero/cumbia.git"
},
"files": [
"cumbia.js",
"cumbia.d.ts"
],
"author": "neomaxzero",
"license": "MIT",
"bugs": {
"url": "https://github.com/neomaxzero/cumbia/issues"
},
"homepage": "https://github.com/neomaxzero/cumbia#readme",
"devDependencies": {
"@types/jest": "^27.4.1",
"bundlesize": "^0.18.1",
"esbuild": "^0.12.8",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.3.2",
"yargs": "^17.0.1"
}
}