This repository was archived by the owner on Jun 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 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
{
"name": "@ownername/module-name",
"version": "0.0.0",
"description": "Github Packages Template for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14"
},
"scripts": {
"test": "jest",
"lint": "eslint --ext .ts .",
"build": "del-cli dist && tsc -p tsconfig.build.json",
"prepublish": "npm run build",
"release": "np --no-release-draft"
},
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com/"
},
"repository": "github:ownername/module-name",
"bugs": {
"url": "https://github.com/ownername/module-name/issues"
},
"author": "ownername",
"homepage": "https://github.com/ownername/module-name#readme",
"license": "UNLICENSED",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^16.11.22",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"del-cli": "^4.0.1",
"eslint": "^8.8.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-sonarjs": "^0.11.0",
"jest": "^27.5.0",
"np": "^7.6.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}