forked from camunda/camunda-external-task-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"version": "1.1.1",
"name": "camunda-external-task-client-js",
"main": "index.js",
"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",
"test:watch": "jest lib --watch --verbose --coverage"
},
"devDependencies": {
"eslint": "^4.18.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-bpmn-io": "0.4.1",
"eslint-plugin-camunda-licensed": "0.4.2",
"eslint-plugin-jest": "^21.12.2",
"eslint-plugin-prettier": "^2.6.0",
"form-data": "^2.3.2",
"jest": "22.4.2",
"prettier": "^1.11.1"
},
"dependencies": {
"chalk": "^2.3.2",
"got": "^8.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",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}