-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1 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
{
"name": "@flowable-oss/external-worker-client",
"version": "1.0.2-SNAPSHOT",
"description": "Flowable External Worker JS Client",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Flowable",
"license": "Apache-2.0",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/flowable/flowable-external-client-js"
},
"scripts": {
"build": "rollup -c rollup.config.js --bundleConfigAsCjs",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "ts-jest"
}
},
"files": [
"package.json",
"dist",
"README.md"
],
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-typescript": "^11.1.2",
"babel-jest": "^29.6.2",
"jest": "^29.6.2",
"nock": "^13.3.2",
"rollup": "^3.28.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0"
}
}