-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.57 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "jsonapi-resolvers",
"version": "2.0.0",
"description": "Resolve JSON-API entities",
"scripts": {
"lint": "eslint .",
"performance": "ts-node -r tsconfig-paths/register ./performance/runner.ts",
"test": "nyc mocha"
},
"repository": "https://github.com/someimportantcompany/jsonapi-resolvers",
"bugs": "https://github.com/someimportantcompany/jsonapi-resolvers/issues",
"homepage": "https://github.com/someimportantcompany/jsonapi-resolvers#readme",
"author": "jdrydn <james@jdrydn.com> (https://jdrydn.com)",
"license": "MIT",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"./index.d.ts",
"./index.js"
],
"keywords": [
"JSON",
"JSON-API",
"resolvers"
],
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5",
"ulid": "^2.3.0"
},
"mocha": {
"exit": true,
"recursive": true,
"require": [
"ts-node/register",
"tsconfig-paths/register"
],
"reporter": [
"spec"
],
"spec": [
"./test/simple.test.ts",
"./test/*.test.{,+(js|ts)}"
]
},
"nyc": {
"exclude": [
"*.d.ts",
"test/"
],
"reporter": [
"lcov",
"text"
]
}
}