-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 816 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 816 Bytes
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
{
"name": "@ashuk203/bare-node-proj",
"version": "3.2.28",
"description": "A demo Github repo to test creating an npm package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"typescript": "^4.7.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@openapitools/openapi-generator-cli": "^2.5.1",
"@types/node": "^18.6.3",
"husky": "^8.0.1"
},
"scripts": {
"build": "tsc",
"test": "echo \"woo, no tests\"",
"prepare": "husky install"
},
"keywords": [
"template",
"templates"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ashutosh-ukey/bare-node-proj/issues"
}
}