-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "@wellers/testarray",
"description": "Functions to augment testing with Node.js Test Runner module.",
"version": "1.1.6",
"author": "Paul Welbourne",
"type": "module",
"license": "ISC",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"types": "dist/esm/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepublish": "scripts/cleandist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && scripts/fixup",
"style": "eslint src/",
"test": "node --loader ts-node/esm test/index.test.ts"
},
"dependencies": {
"fastest-validator": "1.16.0"
},
"devDependencies": {
"@types/node": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"ts-node": "10.9.1",
"typescript": "4.9.5"
},
"keywords": [
"test",
"node:test",
"test runner",
"testing",
"tdd"
],
"bugs": {
"url": "https://github.com/wellers/testarray/issues",
"email": "paulwelbourne@gmail.com"
},
"homepage": "https://github.com/wellers/testarray#readme"
}