-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.61 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.61 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
48
49
50
51
52
53
54
55
56
57
{
"name": "node-extended",
"private": false,
"version": "0.1.0",
"description": "A set of helper functions for node",
"main": "./dist/node-extended.js",
"scripts": {
"prepublishOnly": "npm run build && npm run test && npm run generate-docs",
"generate-docs": "md-magic --path 'README.md' --config ./markdown.config.js",
"build": "tsc",
"start": "tsc --watch",
"test": "npm run build && jest"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
},
"author": "Robbie Cook",
"license": "ISC",
"dependencies": {
"child_process": "^1.0.2",
"markdown-magic": "^2.0.0",
"node-fetch": "^2.6.0",
"node-notifier": "^9.0.0",
"process": "^0.11.10",
"readline": "^1.3.0",
"typedoc": "^0.20.34",
"typedoc-plugin-markdown": "^3.6.0",
"util": "^0.12.1"
},
"devDependencies": {
"@types/node": "^14.11.5",
"@semantic-release/npm": "^7.0.9",
"@types/jest": "^26.0.4",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.6.1",
"eslint": "^7.4.0",
"jest": "^26.1.0",
"jsdoc-to-markdown": "^7.0.1",
"semantic-release": "^17.3.3",
"ts-jest": "^26.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Robbie-Cook/node-extended.git"
},
"bugs": {
"url": "https://github.com/Robbie-Cook/node-extended/issues"
},
"homepage": "https://github.com/Robbie-Cook/node-extended#readme"
}