-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
{
"name": "dtrt-type-validate",
"version": "1.0.6",
"description": "Validation utilities",
"main": "dist/dtrt-type-validate.mjs",
"type": "module",
"exports": {
"import": "./dist/dtrt-type-validate.mjs",
"require": "./dist/dtrt-type-validate.cjs"
},
"engines": {
"node": ">=13.7.0"
},
"devDependencies": {
"eslint": "^8.42.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-jsdoc": "^46.2.2",
"husky": "^8.0.3",
"qunit": "^2.19.4"
},
"dependencies": {
"dtrt-string-utils": "github:dotherightthing/dtrt-string-utils"
},
"scripts": {
"dist": "./scripts/dist.sh",
"lint": "npx eslint ./src/*.mjs",
"prepare": "husky install",
"test": "qunit test/*.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotherightthing/dtrt-type-validate.git"
},
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/dotherightthing/dtrt-type-validate/issues"
},
"homepage": "https://github.com/dotherightthing/dtrt-type-validate#readme"
}