-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
62 lines (62 loc) · 1.98 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
{
"name": "linq-to-typescript",
"version": "11.1.0",
"description": "LINQ ported to TypeScript",
"type": "module",
"exports": {
"types": "./types/index.d.ts",
"import": "./esm/index.js"
},
"main": "./esm/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"maintainers": [
{
"name": "Alexandre Rogozine",
"email": "alexandre.rogozine@live.com"
}
],
"scripts": {
"build": "npx rimraf dist && npm run build:esm && npm run build:declaration",
"build:declaration": "tsc --outDir dist/types --declaration --emitDeclarationOnly",
"build:esm": "tsc --removeComments --outDir dist/esm",
"postbuild": "node --no-warnings config/copy && node --no-warnings config/fix-imports",
"lint": "eslint -c .eslintrc.cjs --ext .ts src",
"doc": "npx rimraf doc && typedoc ./src --exclude \"**/_*/*.ts\" --exclude \"**/bindArrayEnumerable.ts\" --gitRevision master --out ./doc --excludePrivate --excludeExternals --readme README.md --name \"LINQ To TypeScript\" --includeVersion && node config/editdocs",
"release:npm": "npm publish ./dist",
"release:npm-next": "npm publish ./dist --tag next",
"release:pack": "npm pack ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arogozine/LinqToTypeScript.git"
},
"keywords": [
"typescript",
"esm",
"linq",
"async",
"generators",
"enumerable",
"es2022"
],
"author": "Alexandre Rogozine",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.44.0",
"eslint-plugin-jsdoc": "^46.4.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"typedoc-plugin-merge-modules": "^5.0.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=17"
},
"bugs": {
"url": "https://github.com/arogozine/LinqToTypeScript/issues"
},
"homepage": "https://github.com/arogozine/LinqToTypeScript#readme"
}