-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.78 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
69
70
71
72
73
74
75
76
77
78
{
"name": "wald",
"amdName": "wald",
"version": "0.2.4",
"description": "Minimalistic IoC container for javascript",
"source": "lib/main.ts",
"main": "dist/main.js",
"module": "dist/main.m.js",
"umd:main": "dist/main.umd.js",
"esmodule": "dist/main.modern.js",
"exports": {
".": {
"browser": "./dist/main.m.js",
"umd": "./dist/main.umd.js",
"import": "./dist/main.m.js",
"require": "./dist/main.js"
},
"./package.json": "./package.json",
"./": "./"
},
"types": "dist/main.d.ts",
"authors": [
"Katja Lutz <[email protected]>"
],
"homepage": "https://github.com/waldjs/wald",
"repository": {
"type": "git",
"url": "https://github.com/waldjs/wald.git"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.24",
"badgen": "^3.2.1",
"chai": "^4.2.0",
"fs-extra": "^9.0.1",
"jest": "^26.1.0",
"mallery": "1.0.0-alpha.7",
"microbundle": "^0.12.3",
"prettier": "^2.0.5",
"standard-version": "^8.0.2",
"ts-jest": "^26.1.3",
"tsconfig-paths": "^3.9.0"
},
"dependencies": {
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"files": [
"lib",
"dist"
],
"standard-version": {
"scripts": {
"postchangelog": "node scripts/badges.js && node scripts/site.js && git add assets site README.md"
}
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"json-summary"
],
"coveragePathIgnorePatterns": [
"main.(?:tsx|ts|jsx|js)",
"/lib/tpl-lib/",
"/node_modules/"
],
"collectCoverageFrom": [
"lib/**/*.{ts,tsx,js,jsx}"
]
}
}