-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.03 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
{
"name": "@openfn/core",
"version": "1.5.1",
"description": "The central job processing program used by OpenFn integration tools.",
"repository": {
"type": "git",
"url": "https://github.com/openfn/core.git"
},
"main": "./lib/index.js",
"bin": {
"core": "./bin/core"
},
"scripts": {
"test": "mocha --recursive",
"test:watch": "mocha -w --recursive"
},
"files": [
"lib/",
"bin/"
],
"author": "Open Function Group",
"license": "LGPL-3.0",
"dependencies": {
"@openfn/doclet-query": "^0.0.3",
"acorn": "^8.0.5",
"ast-types": "^0.14.2",
"estemplate": "^0.5.1",
"fast-safe-stringify": "^2.0.7",
"mitm": "^1.3.2",
"recast": "0.20.5",
"vm2": "3.9.19",
"yargs": "^17.4.0"
},
"engines": {
"node": ">= 12.17.0"
},
"devDependencies": {
"deep-eql": "4.0.1",
"eslint": ">=4.18.2",
"mocha": "^9.2.2",
"prettier": "^2.2.1"
},
"bugs": {
"url": "https://github.com/OpenFn/core/issues"
},
"homepage": "https://github.com/OpenFn/core#readme"
}