-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
64
65
66
{
"name": "minicomp",
"version": "0.4.1",
"description": "Minimalistic library for creating Web Components",
"main": "dist/commonjs/index.js",
"module": "dist/es/index.js",
"types": "dist/es/index.d.ts",
"scripts": {
"sample": "vite sample",
"test": "jest",
"lint": "eslint .",
"typecheck": "tsc -p conf/typescript/es.json --noEmit",
"coverage": "jest --coverage",
"build-commonjs": "tsc -p conf/typescript/commonjs.json",
"build-es": "tsc -p conf/typescript/es.json",
"build": "npm run build-commonjs && npm run build-es",
"prepack": "npm run build"
},
"files": [
"dist/es",
"dist/commonjs"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/loreanvictor/minicomp.git"
},
"keywords": [
"webcomponents",
"components",
"web"
],
"author": "Eugene Ghanizadeh Khoub",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreanvictor/minicomp/issues"
},
"homepage": "https://github.com/loreanvictor/minicomp#readme",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@sindresorhus/tsconfig": "^3.0.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.15",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-jest": "^29.3.1",
"eslint": "^8.29.0",
"htmplate": "^0.1.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jsdom": "^21.1.0",
"quel": "^0.3.2",
"rehtm": "^0.4.0",
"sleep-promise": "^9.1.0",
"ts-inference-check": "^0.2.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"vite": "^4.0.1"
},
"dependencies": {
"haken": "^0.0.2"
}
}