-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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
{
"name": "dictionary-types",
"version": "0.0.0-development",
"description": "Convenient type definitions for commonly used dictionary/map style objects in TypeScript",
"keywords": [
"collections",
"dictionary",
"hashmap",
"map",
"typescript"
],
"author": "Daniel Cassidy <[email protected]>",
"homepage": "https://github.com/softwareventures/dictionary-types",
"bugs": "https://github.com/softwareventures/dictionary-types/issues",
"repository": "github:softwareventures/dictionary-types",
"license": "ISC",
"scripts": {
"fix": "tsc && tslint --fix --project .",
"lint": "tsc && tslint --project .",
"semantic-release": "semantic-release",
"test": "echo No tests yet"
},
"sideEffects": false,
"engines": {
"node": "^14 || ^16 || >=18"
},
"devDependencies": {
"@softwareventures/semantic-release-config": "4.0.0",
"@softwareventures/tslint-rules": "2.0.0",
"conventional-changelog-conventionalcommits": "7.0.2",
"cz-conventional-changelog": "3.3.0",
"semantic-release": "19.0.5",
"tslint": "6.1.3",
"typescript": "5.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"extends": "@softwareventures/semantic-release-config"
}
}