-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.81 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
{
"name": "@advanced-rest-client/electron-amf-service",
"version": "5.0.2",
"description": "Electron module that parses APIs using AMF parser",
"main": "index.js",
"module": "main.js",
"scripts": {
"test": "electron-mocha --renderer test/*.test.js --timeout 10000",
"start": "electron --inspect=9300 ./demo/main"
},
"keywords": [
"drive",
"electron",
"ARC"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/advanced-rest-client/electron-amf-service"
},
"bugs": {
"url": "https://github.com/advanced-rest-client/electron-amf-service/issues",
"email": "[email protected]"
},
"author": {
"name": "Pawel Psztyc",
"email": "[email protected]"
},
"dependencies": {
"@advanced-rest-client/arc-events": "^0.2.17",
"amf-client-js": "4.7.4",
"esm": "^3.2.25",
"fs-extra": "^10.0.0",
"tmp-promise": "^3.0.2",
"unzipper": "^0.10.11"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/fs-extra": "^9.0.11",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.1",
"@types/unzipper": "^0.10.3",
"chai": "^4.3.4",
"electron": "^13.1.1",
"electron-mocha": "^10.0.0",
"eslint": "^7.28.0",
"eslint-config-esnext": "^4.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-no-only-tests": "^2.6.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"typescript": "^4.3.2"
},
"peerDependencies": {
"electron": "^13.1.1"
},
"ignore": [
"demo"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}