-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.05 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@limitless.claver/stringify",
"repository": {
"type": "git",
"url": "git+https://github.com/limitless-kode/stringify.git"
},
"version": "1.3.1",
"description": "String helper method for all string and JSON manipulations",
"main": "./dist/index.js",
"scripts": {
"release": "release-it",
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"stringify",
"json",
"encrypt-string"
],
"author": {
"name": "Peter Claver",
"email": "limitless.claver@gmail.com"
},
"license": "MIT",
"bugs": {
"email": "limitless.claver@gmail.com",
"url": "https://github.com/limitless-kode/stringify/issues"
},
"homepage": "https://github.com/limitless-kode/stringify#readme",
"devDependencies": {
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@release-it/conventional-changelog": "^5.1.1",
"@types/jest": "^29.5.0",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.15.10",
"@types/xmldom": "^0.1.31",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^21.1.1",
"prettier": "^2.8.7",
"release-it": "^15.9.3",
"ts-jest": "^29.0.5",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^16.0.3",
"xmldom": "^0.6.0"
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{}
]
}
}
}
}
}