-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 905 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 905 Bytes
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
{
"name": "data-store-coding-test",
"version": "1.0.1",
"description": "Data store coding test",
"engines": {
"node": "12.x"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:read": "jest 01.read.test.ts",
"test:write": "jest 02.write.test.ts",
"test:observe": "jest 03.observe.test.ts",
"test:file": "jest 04.file.test.ts",
"test:typed": "jest 05.typed.test.ts"
},
"author": "Spartez Software",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.2",
"jest": "^27.2.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"dependencies": {}
}