-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "value-searcher",
"author": "stevenwdv",
"version": "0.0.0",
"main": "./src/valueSearcher.ts",
"exports": {
".": "./src/valueSearcher.ts",
"./transformers": "./src/transformers.ts"
},
"scripts": {
"lint": "tsc --noEmit --emitDeclarationOnly false && eslint --max-warnings 0 .",
"lint-all": "npm run lint && cd ./test/ && tsc --noEmit --emitDeclarationOnly false && eslint --max-warnings 0 .",
"test": "nyc mocha"
},
"engines": {
"node": ">=16.7"
},
"dependencies": {
"busboy": "^1.6.0",
"crc": "^4.3.2",
"html-entities": "^2.4.0",
"lz-string": "^1.5.0"
},
"devDependencies": {
"@types/busboy": "^1.5.0",
"@types/chai": "^4.3.5",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^20.4.8",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"chai": "^4.3.8",
"deep-equal-in-any-order": "^2.0.6",
"eslint": "^8.46.0",
"eslint-plugin-deprecation": "^1.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}