-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 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
{
"version": "3.1.1-SNAPSHOT",
"name": "camunda-external-task-client-js",
"exports": "./index.js",
"type": "module",
"repository": "https://github.com/camunda/camunda-external-task-client-js.git",
"author": "Camunda Services GmbH",
"license": "Apache-2.0",
"scripts": {
"pretest": "node_modules/.bin/eslint lib/ examples/ index.js",
"test": "jest lib --verbose --coverage --no-color && node test/license-check.js",
"test:watch": "jest lib --watch --verbose --coverage"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-env": "^7.23.9",
"@jest/globals": "^29.7.0",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-bpmn-io": "1.0.0",
"eslint-plugin-camunda-licensed": "0.4.6",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-prettier": "^4.2.1",
"form-data": "^4.0.0",
"jest": "29.7.0",
"license-checker": "^25.0.1",
"prettier": "^2.7.1"
},
"dependencies": {
"chalk": "^5.3.0",
"got": "^14.2.0"
},
"description": "Implement your [BPMN Service Task](https://docs.camunda.org/manual/latest/user-guide/process-engine/external-tasks/) in NodeJS.",
"bugs": {
"url": "https://github.com/camunda/camunda-external-task-client-js/issues"
},
"homepage": "https://github.com/camunda/camunda-external-task-client-js#readme",
"directories": {
"example": "examples",
"lib": "lib",
"test": "test"
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!(got|chalk)).+\\.js$"
],
"moduleNameMapper": {
"#(.*)": "<rootDir>/node_modules/$1"
},
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}