-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.4 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "bemtv",
"version": "0.9.0",
"type": "module",
"license": "MIT",
"author": "Diogo Neves",
"description": "Declarative and flexible UI library: Template-based reactivity, automatic routes/pages and SuperComponents.",
"keywords": [
"frontend",
"UI",
"reactive",
"declarative",
"components",
"lightweight",
"bemtv"
],
"types": "./types/main.d.ts",
"files": [
"dist",
"types"
],
"main": "./dist/bemtv.umd.cjs",
"module": "./dist/bemtv.js",
"exports": {
".": {
"import": "./dist/bemtv.js",
"require": "./dist/bemtv.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"cm": "cz",
"coverage": "jest --coverage",
"prepare": "husky install",
"prepublishOnly": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/diogoneves07/bemtvjs.git"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"cz-conventional-changelog": "^3.3.0",
"jest-environment-jsdom": "^29.3.1",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"husky": "^8.0.2"
},
"dependencies": {
"goober": "^2.1.11"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}