-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.18 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
{
"name": "es2018-linq",
"version": "1.0.0",
"description": "LINQ for ES2018",
"author": "Martin Chloride <[email protected]>",
"keywords": [
"LINQ",
"iterator",
"iterable",
"stream",
"enumerable",
"async"
],
"repository": {
"type": "git",
"url": "https://github.com/Martin1994/eslinq.git"
},
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"test": "jest && eslint --max-warnings=0 .",
"build": "npm run-script generate-code && npm run-script format-generated-code && tsc -p src",
"generate-code": "cd codegen && ts-node index.ts",
"format-generated-code": "eslint --config=.eslintrc.generated.json --fix ./src/enumerable.ts && eslint --config=.eslintrc.generated.json --fix ./src/asyncEnumerable.ts"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/node": "^12.14.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}