-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "@quenk/potoo",
"version": "4.0.12",
"description": "Message passing virtual machine.",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"lint": "./node_modules/.bin/eslint src/**/*.ts test/**/*.ts",
"format": "./node_modules/.bin/prettier --write src test",
"build": "make",
"test": "./node_modules/.bin/jest --config jest.config.ts --runInBand test"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@quenk/test": "^2.5.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"prettier": "^3.3.3",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0"
},
"author": "Quenk Technologies Limited",
"license": "Apache-2.0",
"dependencies": {
"@quenk/noni": "^1.52.15"
}
}