-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "semiconductor",
"version": "1.0.0",
"description": "Multiple dispatch pattern library written with TypeScript",
"main": "index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"prepare": "husky install",
"build": "tsc -p tsconfig.json",
"test": "jest --coverage --runInBand --detectOpenHandles --forceExit && codecov -F multimethod",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"pretty": "prettier --write ./lib/**/*"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown ./lib/**/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nowayhecodes/semiconductor.git"
},
"keywords": [
"multiple dispatch",
"multimethod",
"fp",
"functional",
"immutable",
"dynamic dispatch",
"ts",
"typescript"
],
"author": "Gustavo Cavalcante",
"license": "MIT",
"bugs": {
"url": "https://github.com/nowayhecodes/semiconductor/issues"
},
"homepage": "https://github.com/nowayhecodes/semiconductor#readme",
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.3",
"benchmark": "^2.1.4",
"benny": "^3.6.15",
"codecov": "^3.8.3",
"husky": "^6.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.1",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.4",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"fast-deep-equal": "^3.1.3"
}
}