-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.97 KB
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
{
"name": "@final-hill/class-tools",
"version": "1.2.3",
"description": "Class Tools provides a number of utility functions and decorators to ease the use of features commonly found in functional languages",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run clean && npm run lint",
"build": "webpack",
"prebuild-nofix": "npm run clean && npm run lint-nofix",
"build-nofix": "webpack",
"clean": "rimraf ./dist ./coverage",
"clean-full": "rimraf ./dist, ./coverage, ./.cache, ./node_modules",
"debug": "node --debug-brk --inspect ./node_modules/jest/bin/jest -i",
"prelint": "npm run type-check",
"lint": "eslint src/ --ext .ts --fix",
"prelint-nofix": "npm run type-check",
"lint-nofix": "eslint src/ --ext .ts",
"test": "jest --coverage",
"type-check": "tsc -p tsconfig.json --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/final-hill/class-tools.git"
},
"keywords": [
"memoization",
"memoisation",
"fixed-point",
"recursion",
"y-combinator",
"decorator",
"lazy-evaluation",
"partial-application",
"currying"
],
"author": "Michael L Haufe <michael.haufe@final-hill.com> (https://final-hill.com/)",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/final-hill/class-tools/issues"
},
"homepage": "https://github.com/final-hill/class-tools#readme",
"dependencies": {
"@final-hill/multi-key-map": "^1.0.1"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.11.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.5.3",
"jest-junit": "^11.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.5",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}