-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.34 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
{
"name": "alphanumeric-encoder",
"version": "1.6.0",
"description": "Encodes a number to a letter representation, or decodes it back",
"keywords": [
"alphanumeric",
"encode",
"decode",
"letter to number",
"number to letter",
"string to number",
"number to string"
],
"homepage": "https://github.com/M-Scott-Lassiter/Alphanumeric-Encoder#readme",
"bugs": {
"url": "https://github.com/M-Scott-Lassiter/Alphanumeric-Encoder/issues"
},
"license": "MIT",
"author": "M. Scott Lassiter",
"files": [
"index.js",
"index.d.ts",
"LICENSE",
"package.json",
"package-lock.json"
],
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/M-Scott-Lassiter/Alphanumeric-Encoder.git"
},
"scripts": {
"build": "npm run lint && npm run test && npm run docs && npm run tableofcontents && npm run format && echo \"Build process complete.\" && exit 0",
"cz": "cz",
"docs": "documentation build index.js --format md --output API.md",
"format": "npx prettier . --write",
"tableofcontents": "markdown-toc -i ./README.md && markdown-toc -i ./CONTRIBUTING.md",
"test": "jest --coverage",
"lint": "eslint . --ext .js --fix",
"prepare": "husky install"
},
"sideEffects": false,
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"devDependencies": {
"@m-scott-lassiter/semantic-release-github-npm-config": "^2.0.1",
"@types/jest": "^29.5.8",
"commitizen": "^4.3.0",
"cz-customizable": "^7.0.0",
"documentation": "^14.0.2",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"markdown-toc": "^1.2.0",
"prettier": "^3.1.0",
"semantic-release": "^22.0.7"
},
"engines": {
"node": ">=10"
},
"release": {
"extends": "@m-scott-lassiter/semantic-release-github-npm-config"
}
}