-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.96 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.96 KB
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
{
"name": "@api-components/amf-web-api",
"description": "A web service parsing APIs with the AMF parser.",
"version": "0.1.4",
"license": "Apache-2.0",
"main": "index.js",
"module": "index.js",
"type": "module",
"author": {
"name": "Pawel Uchida-Psztyc",
"email": "pawel.psztyc@gmail.com"
},
"contributors": [
"Your name can be here!"
],
"repository": {
"type": "git",
"url": "git://github.com/api-components/amf-web-api.git"
},
"bugs": {
"url": "https://github.com/api-components/amf-web-api/issues",
"email": "arc@mulesoft.com"
},
"dependencies": {
"@advanced-rest-client/events": "^0.2.29",
"@koa/cors": "^3.1.0",
"@koa/router": "^10.1.1",
"amf-client-js": "^5.0.0-SEMANTIC-JSONSCHEMA.6",
"fs-extra": "^10.0.0",
"koa": "^2.13.4",
"tmp-promise": "^3.0.3",
"unzipper": "^0.10.11",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@babel/eslint-plugin": "^7.14.5",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/chai": "^4.2.11",
"@types/fs-extra": "^9.0.13",
"@types/koa": "^2.13.4",
"@types/koa__cors": "^3.0.3",
"@types/koa__router": "^8.0.9",
"@types/mocha": "^9.0.0",
"@types/unzipper": "^0.10.4",
"@types/uuid": "^8.3.1",
"chai": "^4.3.4",
"chalk": "^5.0.0",
"eslint": "^8.1.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-no-only-tests": "^2.6.0",
"get-port": "^6.0.0",
"husky": "^7.0.2",
"lint-staged": "^12.3.2",
"mocha": "^9.1.3",
"typescript": "^4.4.4"
},
"scripts": {
"test": "mocha test/*.test.js --timeout 10000",
"test:force": "mocha test/*.test.js --timeout 10000 --exit",
"prepare": "husky install",
"dev:start": "node dev/runner.js"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}