-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 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
67
68
{
"name": "@owja/micro",
"version": "1.0.0-alpha.10",
"description": "micro framework for web components",
"keywords": [
"typescript",
"webcomponents",
"micro",
"framework"
],
"repository": {
"type": "git",
"url": "git+https://github.com/owja/micro.git"
},
"bugs": {
"url": "https://github.com/owja/micro/issues"
},
"homepage": "https://github.com/owja/micro",
"author": "Hauke Broer <info@owja.de>",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.mjs",
"exports": {
"require": "./dist/index.js",
"default": "./dist/index.mjs"
},
"scripts": {
"build": "microbundle --format cjs,esm",
"watch": "microbundle --watch --format cjs,esm",
"test": "jest --collectCoverage --coverageReporters html text",
"test:ci": "jest --reporters jest-junit summary --collectCoverage --coverageReporters cobertura text-summary",
"prettier": "prettier -c ./",
"prettier:fix": "prettier -w ./",
"prepack": "rm -rf dist && npm run prettier && jest",
"prepare": "npm run build"
},
"license": "MIT",
"devDependencies": {
"@owja/browserslist-config": "^1.0.1",
"@owja/prettier-config": "^1.0.2",
"@owja/typescript-config": "^1.0.2",
"@types/jest": "^29.5.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^16.0.0",
"lint-staged": "^13.2.2",
"microbundle": "^0.15.1",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"prettier": "@owja/prettier-config",
"lint-staged": {
"*": "prettier"
},
"browserslist": [
"extends @owja/browserslist-config"
],
"mangle": {
"regex": "^_"
},
"files": [
"/dist",
"/src"
]
}