-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.2 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
{
"name": "sorfe",
"version": "1.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && tsc --build --force",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rxst/sorfe.git"
},
"keywords": [
"electron",
"IPC",
"API",
"sorfe"
],
"author": "d.samborskyi",
"license": "ISC",
"bugs": {
"url": "https://github.com/rxst/sorfe/issues"
},
"homepage": "https://github.com/rxst/sorfe#readme",
"dependencies": {
"class-transformer": "^0.3.1",
"class-validator": "^0.14.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"typescript": "^3.9.6",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"@types/uuid": "^8.3.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.0",
"electron": "^18.3.7"
},
"devEngines": {
"node": "8.x || 9.x || 10.x || 11.x || 12.x || 13.x || 14.x"
},
"files": [
"lib/*/**.js",
"lib/*/**.ts",
"lib/*.js",
"lib/*.ts",
"LICENSE",
"README.md",
"tsconfig.json"
],
"jest": {
"verbose": true,
"preset": "ts-jest"
}
}