-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 KB
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
{
"name": "proxable",
"version": "1.1.0",
"type": "module",
"main": "src/index.js",
"files": [
"src/"
],
"scripts": {
"build": "tsc",
"lint": "eslint --fix \"src/**/*.ts\"",
"test:unit": "node --import tsx --test test/unit/*.test.ts",
"test:integration": "node --import tsx --test test/integration/*.test.ts",
"test:bench": "node --import tsx --test test/bench/*.test.ts",
"test:all": "npm run test:unit && npm run test:integration && npm run test:bench",
"test": "npm run test:unit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/node": "^20.19.0",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"benchmark": "^2.1.4",
"eslint": "^9.29.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"rxjs": "^7.8.2",
"tsx": "^4.19.3",
"typescript": "^5.0.0"
},
"author": "Rein Petersen",
"license": "LGPL-3.0-only",
"description": "A tiny, high-performance Proxy-based observable library with pathed subscriptions and no dependencies."
}