-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "@timing71/common",
"version": "0.5.2",
"description": "Timing71 common library",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": "./src/index.js",
"./analysis": "./src/analysis/index.js",
"./messages": "./src/messages/index.js",
"./polyfill": "./src/polyfill-transformstream.js"
},
"types": "./src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/timing71/common.git"
},
"author": "James Muscat",
"license": "AGPL-3.0-or-later",
"homepage": "https://www.timing71.org/",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest src/",
"lint": "eslint src/",
"doc": "jsdoc src/"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.0.0",
"jsdoc": "^4.0.2",
"process": "^0.11.10",
"web-streams-polyfill": "^3.2.1"
},
"dependencies": {
"@zip.js/zip.js": "^2.4.26",
"dayjs": "^1.11.6",
"deep-equal": "^2.1.0",
"mobx": "^6.7.0",
"mobx-state-tree": "^5.1.7"
}
}