-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·135 lines (135 loc) · 3.48 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@oada/list-lib",
"version": "6.1.0",
"description": "Library for processing items in an OADA list",
"main": "dist/index.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/OADA/list-lib.git"
},
"author": "Alex Layton <alex@layton.in>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OADA/list-lib/issues"
},
"homepage": "https://github.com/OADA/list-lib",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "yarn run build test && c8 ava",
"test:debug": "ava -T 60m -svc 1 --no-worker-threads",
"build": "tsc -b",
"watch": "tsc -b --watch",
"prepare": "npm run build"
},
"files": [
"src/**/*",
"dist/**/*",
"tsconfig.json"
],
"ava": {
"failFast": false,
"files": [
"**/*.test.ts"
],
"typescript": {
"extensions": [
"ts"
],
"rewritePaths": {
"src/": "dist/",
"test/": ".test/"
},
"compile": false
}
},
"c8": {
"reporter": [
"text",
"lcov"
],
"src": "src",
"exclude": [
"*.d.ts",
".pnp.*",
".test"
]
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@oada/client": "^5.1.0",
"@tsconfig/node18": "^18.2.4",
"@types/debug": "^4.1.12",
"@types/node": "^18.19.39",
"@types/object-assign-deep": "^0.4.3",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"@yarnpkg/sdks": "^3.1.3",
"ava": "6.1.3",
"c8": "^10.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.45.0",
"eslint-config-xo-typescript": "^4.0.0",
"eslint-formatter-pretty": "^6.0.1",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-array-func": "^5.0.1",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-escompat": "^3.4.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-constructor-bind": "^2.0.4",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-no-secrets": "^1.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-sonarjs": "^1.0.3",
"eslint-plugin-unicorn": "^54.0.0",
"prettier": "^3.3.2",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"typescript": "5.5.2"
},
"dependencies": {
"@oada/pino-debug": "^4.0.1",
"@oada/types": "^3.5.3",
"abort-controller": "^3.0.0",
"debug": "^4.3.5",
"eventemitter3": "^5.0.1",
"isomorphic-timers-promises": "^1.0.1",
"json-ptr": "^3.1.1",
"jsonpath-plus": "^9.0.0",
"object-assign-deep": "^0.4.0",
"tslib": "^2.6.3",
"xksuid": "https://github.com/g12i/xksuid.git#commit=22a21eb01331191feb62ea0a4e67d96d2e80f396"
},
"peerDependencies": {
"@oada/client": "^5.0.0"
},
"peerDependenciesMeta": {
"@oada/client": {
"optional": true
}
},
"packageManager": "yarn@4.3.1",
"volta": {
"node": "20.15.0"
},
"resolutions": {
"xksuid": "https://github.com/g12i/xksuid.git#fix-crypto-polyfill"
}
}