-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.45 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
{
"name": "typed-signals",
"version": "3.0.0",
"description": "A type checked signal library for TypeScript (and JavaScript)",
"keywords": [
"TypeScript",
"Signal",
"Event",
"Publish",
"Subscribe"
],
"homepage": "https://github.com/Lusito/typed-signals",
"bugs": {
"url": "https://github.com/Lusito/typed-signals/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Lusito/typed-signals.git"
},
"license": "CC0-1.0",
"author": "Santo Pfingsten",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig-build.json",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"doc": "rimraf docs && typedoc --excludePrivate --out docs --exclude \"src/*.spec.ts\" src && copyfiles -a -f \"doc-assets/*\" docs",
"lint": "mono-lint",
"lint:fix": "mono-lint --fix",
"release": "mono-release",
"test": "jest"
},
"devDependencies": {
"@lusito/eslint-config": "^3.1.0",
"@lusito/mono": "^0.14.2",
"@lusito/prettier-config": "^3.1.0",
"@lusito/tsconfig": "^1.0.2",
"@types/jest": "^29.5.12",
"copyfiles": "^2.4.1",
"coveralls": "^3.1.1",
"eslint-plugin-jest": "^28.5.0",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"sort-package-json": "^2.10.0",
"ts-jest": "^29.1.3",
"typedoc": "0.25.13",
"typescript": "^5.4.5"
},
"volta": {
"node": "20.13.1"
}
}