generated from hebertcisco/ts-npm-package-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "@localtools/base64",
"version": "0.0.4",
"description": "Node.js Base64 Text Encoder/Decoder",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.cjs",
"test:cov": "npm test -- --coverage",
"test:watch": "npm test -- --watch",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "npm test -- --config jest-e2e.cjs",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/localtools/nodejs-base64.git"
},
"keywords": [
"base64",
"encoding",
"decoding",
"text",
"string",
"binary",
"data",
"convert",
"transformation",
"utility"
],
"author": "LocalTools",
"private": false,
"publishConfig": {
"access": "public"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/localtools/nodejs-base64/issues"
},
"homepage": "https://github.com/localtools/nodejs-base64#readme",
"devDependencies": {
"@types/jest": "29.2.4",
"@typescript-eslint/eslint-plugin": "5.46.0",
"@typescript-eslint/parser": "5.47.1",
"eslint": "8.30.0",
"eslint-plugin-jest": "27.1.7",
"jest": "29.3.1",
"prettier": "2.8.1",
"ts-jest": "29.0.3",
"typescript": "4.9.4"
},
"files": [
"lib/**/*"
]
}