forked from rob893/typescript-extended-linq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.51 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "typescript-extended-linq",
"version": "3.1.2",
"description": "Typescript Linq API",
"author": "Robert Herber",
"license": "MIT",
"main": "dist/index",
"types": "dist/index",
"repository": {
"type": "git",
"url": "git+https://github.com/rob893/typescript-extended-linq.git"
},
"keywords": [
"linq",
"typescript"
],
"bugs": {
"url": "https://github.com/rob893/typescript-extended-linq/issues"
},
"homepage": "https://github.com/rob893/typescript-extended-linq#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"benchmark": "ts-node ./src/__benchmarks__/index.ts",
"build": "rm -rf ./dist && tsc",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"build-circular-dependency-check": "madge --circular ./dist",
"circular-dependency-check": "madge --circular --extensions ts --ts-config tsconfig.json ./src",
"prettier": "prettier --write **/*.{ts,js,css,html,json} !**/node_modules/** !**/dist/** !**/coverage/** !**/compiled/**",
"release": "npm run build && npm run build-circular-dependency-check && npm run lint && np --no-cleanup --no-2fa",
"test": "jest --coverage",
"test-watch": "jest --watchAll --coverage",
"test-clean": "jest --clearCache",
"test-mutate": "npx stryker run",
"typedoc": "rm -rf ./docs && typedoc src/index.ts",
"version": "npm run build && npm run typedoc",
"prepare": "husky install",
"validate": "npm run build && npm run build-circular-dependency-check && npm t && npm run lint"
},
"madge": {
"detectiveOptions": {
"ts": {
"skipTypeImports": true
}
}
},
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@stryker-mutator/core": "^5.6.1",
"@stryker-mutator/jest-runner": "^5.6.1",
"@stryker-mutator/typescript-checker": "^5.6.1",
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"benchmark": "^2.1.4",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"linq-to-typescript": "^9.0.0",
"linq-typescript": "^1.0.251",
"madge": "^5.0.1",
"np": "^7.6.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}