forked from AlexAegis/advent-of-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.65 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "advent-of-code",
"displayName": "Advent of Code Solutions",
"description": "Advent of Code Solutions",
"version": "0.14.3",
"author": {
"name": "Alex Aegis",
"email": "alexaegis@gmail.com",
"url": "https://github.com/AlexAegis"
},
"homepage": "https://github.com/AlexAegis",
"bugs": {
"email": "alexaegis@gmail.com",
"url": "https://github.com/AlexAegis/advent-of-code/issues"
},
"scripts": {
"lint": "concurrently --timestamp-format \"HH:mm:ss.SSS\" --prefix-colors \"bgYellow.black.dim,bgCyan.black.dim\" --prefix \"{name} {time} {pid}\" --names \"ESLINT,TSLINT\" \"npm run lint:es\" \"npm run lint:ts\"",
"lint:fix": "concurrently --timestamp-format \"HH:mm:ss.SSS\" --prefix-colors \"bgYellow.black.dim,bgCyan.black.dim\" --prefix \"{name} {time} {pid}\" --names \"ESLINT,TSLINT\" \"npm run lint:es:fix\" \"npm run lint:ts:fix\"",
"lint:es": "eslint --max-warnings=0 .",
"lint:es:fix": "eslint --fix .",
"lint:ts": "tslint --project .",
"lint:ts:fix": "tslint --fix --project .",
"lint:css": "stylelint --allow-empty-input --syntax=css ./**/*.css",
"lint:scss": "stylelint --allow-empty-input --syntax=scss ./**/*.scss",
"lint:md": "markdownlint --ignore-path '.gitignore' .",
"lint:rmd": "remark .",
"fmt": "prettier --write \"src/**/*.ts\"",
"fmt:check": "prettier --check .",
"test": "mocha --config ./.mocharc.json",
"test:parallel": "mocha --parallel --config ./.mocharc.json",
"test:coverage": "nyc npm test",
"clean": "rimraf ./dist ./coverage ./.codacy-coverage ./cache",
"self-destruct": "rimraf ./dist ./coverage ./.codacy-coverage ./cache ./node-modules ./package-lock.json ./yarn.lock ./pnpm-lock.yaml",
"codecov": "codecov",
"ncu": "ncu -u",
"postinstall": "husky install",
"prepublish": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "https://github.com/AlexAegis/advent-of-code/"
},
"categories": [
"Other"
],
"license": "mit",
"private": true,
"dependencies": {
"@thi.ng/iterators": "^5.1.40",
"@thi.ng/memoize": "^2.1.3",
"@thi.ng/transducers": "^7.4.0",
"big-integer": "^1.6.48",
"is-ci": "^2.0.0",
"iterare": "^1.2.1",
"ix": "^4.0.0",
"rxjs": "^6.6.3",
"workerpool": "^6.0.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/chai": "^4.2.14",
"@types/is-ci": "^2.0.0",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.9",
"@types/workerpool": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai": "^4.2.0",
"codecov": "^3.8.1",
"commitlint": "^11.0.0",
"concurrently": "^5.3.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^5.0.1",
"lint-staged": "^10.5.1",
"markdownlint": "^0.21.1",
"markdownlint-cli": "^0.25.0",
"mocha": "^8.2.1",
"npm-check-updates": "^10.2.2",
"nyc": "^15.1.0",
"pinst": "^2.1.1",
"prettier": "^2.2.0",
"remark": "^13.0.0",
"remark-cli": "^9.0.0",
"remark-lint-maximum-line-length": "^2.0.3",
"remark-preset-lint-consistent": "^4.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "9.0.0",
"tsconfig-paths": "^3.9.0",
"tslint": "~6.1.2",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "4.1.2",
"yaml-lint": "^1.2.4"
},
"engines": {
"node": ">= 12.13.1",
"npm": "7.x"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules/",
"src/**/*.d.ts",
"src/**/*.spec.ts",
"src/**/deque.class.ts"
],
"reporter": [
"lcov"
],
"all": true
}
}