-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "dln-helper",
"version": "0.0.1",
"description": "Helper methods for Node applications.",
"keywords": [
"DLN",
"helper",
"node"
],
"homepage": "https://devslane.com",
"bugs": "https://github.com/devslane/dln-helper/issues",
"repository": "github:devslane/dln-helper",
"license": "MIT",
"author": "Piyush Mishra <[email protected]>",
"main": "index.js",
"directories": {
"lib": "lib",
"doc": "docs",
"test": "tests"
},
"scripts": {
"build": "npm run build-ts",
"build-ts": "tsc",
"docs": "typedoc --out docs lib --theme minimal --hideGenerator",
"prepare": "npm run build && npm run docs",
"test": "echo \\\"Error: no tests specified\\\" && exit 1"
},
"dependencies": {
"async": "^2.6.3",
"change-case": "^3.1.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/async": "^2.4.2",
"@types/express": "^4.17.1",
"@types/uuid": "^3.4.5",
"typedoc": "^0.15.0",
"typescript": "^3.6.4"
},
"engines": {
"node": ">= 10.16.0",
"npm": ">= 6.9.0"
}
}