-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.69 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
56
57
58
59
60
61
62
63
64
{
"name": "selectively",
"version": "2.0.15",
"description": "Create selection by filtering a collection.",
"author": "Utily",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/utily/selectively"
},
"bugs": {
"url": "https://github.com/utily/selectively/issues"
},
"homepage": "https://github.com/utily/selectively",
"type": "module",
"module": "./dist/mjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"default": "./dist/mjs/index.js",
"types": "./dist/types/index.d.ts"
},
"require": {
"default": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"scripts": {
"lint": "eslint --max-warnings=0 '**/*.{ts,tsx}'",
"fix": "eslint '**/*.{ts,tsx}' --fix",
"build": "rimraf dist/* && tsc -p tsconfig.mjs.json && tsc -p tsconfig.cjs.json",
"test": "vitest --run",
"coverage": "vitest --coverage",
"prepare": "npm run build",
"clean": "rimraf dist node_modules coverage",
"verify": "npm run build && npm run test && npm run lint && npm audit",
"dev": "watch 'npm run build' ."
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint": "^8.57.0",
"eslint-plugin-prettierx": "github:utily/eslint-plugin-prettierx#utily-20231004",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettierx": "github:utily/prettierx#utily-20231004",
"rimraf": "^6.0.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"dependencies": {
"@cogneco/mend": "^1.7.15",
"isly": "^0.1.25"
}
}