generated from JS-DevTools/template-node-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.52 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
{
"name": "@my-npm-scope/my-package-name",
"version": "0.0.2",
"description": "The description of my library",
"keywords": [],
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://my-website.com/my-repo-name",
"repository": {
"type": "git",
"url": "https://github.com/MyGitHubOrg/my-repo-name.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"my-cli": "bin/my-cli.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"clean": "shx rm -rf .nyc_output coverage lib",
"lint": "eslint src test",
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha && npm run lint",
"coverage": "nyc node_modules/mocha/bin/mocha",
"upgrade": "npm-check -u && npm audit fix",
"bump": "bump --tag --push --all",
"release": "npm run upgrade && npm run clean && npm run build && npm test && npm run bump"
},
"engines": {
"node": ">=10"
},
"devDependencies": {
"@jsdevtools/chai-exec": "^2.0.1",
"@jsdevtools/eslint-config": "^1.0.4",
"@jsdevtools/version-bump-prompt": "^6.0.2",
"@types/chai": "^4.1.7",
"@types/command-line-args": "^5.0.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.23",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"mocha": "^8.0.1",
"npm-check": "^5.9.0",
"nyc": "^15.0.0",
"shx": "^0.3.2",
"source-map-support": "^0.5.12",
"typescript": "^3.5.1"
},
"dependencies": {
"command-line-args": "^5.1.1"
}
}