This repository was archived by the owner on Jan 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.02 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "kronos-flow",
"version": "0.0.0-semantic-release",
"publishConfig": {
"access": "public"
},
"main": "dist/flow.js",
"module": "src/flow.js",
"description": "Base flow implementation",
"keywords": [
"kronos-step"
],
"contributors": [
{
"name": "Torsten Link",
"email": "[email protected]"
},
{
"name": "Markus Felten",
"email": "[email protected]"
}
],
"license": "BSD-2-Clause",
"scripts": {
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
"docs": "documentation readme src/flow.js --section=API",
"lint": "documentation lint src/flow.js",
"posttest": "npm run prepare && markdown-doctest",
"prepare": "rollup -c",
"test": "ava"
},
"dependencies": {
"kronos-endpoint": "^2.15.0",
"kronos-step": "^5.7.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^6.1.0",
"acorn-class-fields": "https://github.com/arlac77/acorn-class-fields.git",
"ava": "^2.4.0",
"builtin-modules": "^3.1.0",
"c8": "^7.0.0",
"documentation": "^12.1.4",
"esm": "^3.2.25",
"kronos-step-passthrough": "^2.2.0",
"kronos-test-step": "^3.1.4",
"markdown-doctest": "^1.0.0",
"rollup": "^1.28.0",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-executable": "^1.5.2",
"semantic-release": "^15.14.0"
},
"engines": {
"node": ">=12.14.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Kronos-Integration/kronos-flow.git"
},
"bugs": {
"url": "https://github.com/Kronos-Integration/kronos-flow/issues"
},
"homepage": "https://github.com/Kronos-Integration/kronos-flow#readme",
"ava": {
"files": [
"tests/*-test.mjs"
],
"require": [
"esm"
],
"babel": false,
"compileEnhancements": false,
"extensions": [
"mjs"
]
},
"template": {
"repository": {
"url": "https://github.com/arlac77/npm-package-template.git"
}
}
}