-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "carrot-rcc",
"version": "0.8.2",
"description": "Camunda external task Robot Framework RCC client",
"bin": "./carrot-rcc",
"scripts": {
"build": "rollup -c rollup.config.js",
"prettier:check": "prettier --check \"*.ts\"",
"prettier:format": "prettier --write \"*.ts\"",
"start": "tsc -w",
"test": "TZ=Europe/Helsinki jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datakurre/carrot-rcc.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/datakurre/carrot-rcc.git"
},
"homepage": "https://github.com/datakurre/carrot-rcc#readme",
"importSort": {
".js, .ts": {
"style": "module",
"parser": "typescript"
}
},
"dependencies": {
"adm-zip": "^0.5.5",
"camunda-external-task-client-js": "^2.1.1",
"dotenv": "^10.0.0",
"fdir": "^5.1.0",
"mime-types": "^2.1.31",
"neodoc": "^2.0.2",
"rollup-plugin-hashbang": "^2.2.2",
"typed-rest-client": "^1.8.4",
"yaml": "^1.10.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^2.4.2",
"@rollup/plugin-typescript": "^8.2.1",
"@types/adm-zip": "^0.4.34",
"@types/camunda-external-task-client-js": "^1.3.1",
"@types/dotenv": "^8.2.0",
"@types/jest": "^27.4.0",
"@types/mime-types": "^2.1.0",
"@types/yaml": "^1.9.7",
"import-sort-style-module": "^6.0.0",
"jest": "^27.5.0",
"prettier": "^2.3.2",
"prettier-plugin-import-sort": "0.0.7",
"rollup": "^2.52.7",
"ts-jest": "^27.1.3",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}