-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "@anmiles/prototypes",
"version": "10.1.0",
"description": "Provides prototype extensions for native JS modules",
"keywords": [
"prototype",
"extension",
"native"
],
"author": "Anatoliy Oblaukhov",
"homepage": "https://github.com/anmiles/prototypes",
"repository": "github:anmiles/prototypes",
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --verbose",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm test -- --ci --coverage",
"test:watch": "npm test -- --watch",
"test:watch:coverage": "npm test -- --watch --coverage",
"test:report:coverage": "nyc report --nycrc-path ./coverage.config.js -t ./coverage --report-dir ./coverage"
},
"dependencies": {
"iconv-lite": "^0.6.3"
},
"devDependencies": {
"@anmiles/eslint-config": "^7.1.2",
"@anmiles/tsconfig": "^3.0.2",
"@stylistic/eslint-plugin": "^1.7.0",
"@types/jest": "^29.5.12",
"@types/mock-fs": "^4.13.4",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-align-assignments": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsonc": "^2.14.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"mock-fs": "^5.2.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2"
}
}