This repository was archived by the owner on Aug 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.16 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "augmentative-iterable",
"description": "This project is just a template for creation of new projects",
"version": "1.6.1",
"private": false,
"author": {
"name": "Thiago O Santos <tos.oliveira@gmail.com>"
},
"engines": {
"node": ">=10"
},
"packageManager": "pnpm@11.22.0",
"files": [
"index.js",
"lib",
"index.d.ts"
],
"types": "index.d.ts",
"main": "index.js",
"scripts": {
"format": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"lint": "pnpm run lint:format && pnpm run lint:style",
"lint:fix": "pnpm run lint:format:fix && pnpm run lint:style:fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:benchmark": "node --expose-gc test/benchmark/index.js",
"clear:modules": "del-cli ./node_modules",
"preaction:verify:update-modules": "pnpm run action:verify:update-modules:check",
"action:verify:update-modules": "pnpm run action:verify:update-modules:reinstall && pnpm run action:verify:update-modules:clean",
"action:verify:update-modules:clean": "del-cli .check",
"lint:format": "prettier --check '{src,test}/**/*.ts'",
"lint:format:fix": "prettier --write '{src,test}/**/*.ts'",
"lint:style": "eslint index.js 'lib/*.js' '**/*.ts'",
"lint:style:fix": "eslint index.js 'lib/*.js' '**/*.ts' --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codibre/augmentative-iterable.git"
},
"homepage": "https://github.com/codibre/augmentative-iterable#readme",
"bugs": {
"url": "https://github.com/codibre/augmentative-iterable/issues"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^4.1.10",
"benchmark": "^2.1.4",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"vitest": "^4.1.10"
}
}