-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "crockford-base32",
"version": "2.0.0",
"description": "An implementation of Douglas Crockford's base 32 encoding algorithm",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint \"src/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/devbanana/crockford-base32.git"
},
"keywords": [
"base32",
"typescript"
],
"author": "Brandon Olivares <[email protected]> (https://www.devbanana.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/devbanana/crockford-base32/issues"
},
"homepage": "https://github.com/devbanana/crockford-base32#readme",
"dependencies": {
"@types/node": "^14.17.29"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"files": [
"/lib/",
"/CHANGELOG.md"
]
}