-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.07 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
{
"name": "@awesomeeng/awesome-utils",
"version": "1.6.0",
"author": "the awesome engineering company",
"license": "MIT",
"contributors": [
"Glen R. Goodwin"
],
"main": "./src/AwesomeUtils.js",
"types": "./types/AwesomeUtils.d.ts",
"engines": {
"node": ">=10.5.0"
},
"devDependencies": {
"eslint": "^8.8.0",
"jsdoc-to-markdown": "^7.1.1",
"mocha": "^9.2.0",
"typescript": "^4.5.5"
},
"scripts": {
"build": "tsc",
"lint": "eslint src test",
"docs": "jsdoc2md src/** --separators > docs/API.md",
"test": "mocha test",
"tests": "mocha test"
},
"description": "Javascript Utility functions for enterprise nodejs applications.",
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/awesomeeng/awesome-utils.git"
},
"keywords": [
"awesome",
"awesomeeng",
"awesome",
"engineering",
"utilities",
"utility",
"utils",
"util"
],
"bugs": {
"url": "https://github.com/awesomeeng/awesome-utils/issues"
},
"homepage": "https://github.com/awesomeeng/awesome-utils#readme"
}