This repository was archived by the owner on Oct 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "@openfn/language-primero",
"version": "2.8.0",
"description": "A UNICEF Primero language package for use with Open Function",
"main": "lib/index.js",
"homepage": "https://docs.openfn.org",
"repository": {
"type": "git",
"url": "https://github.com/openfn/language-primero.git"
},
"scripts": {
"build": "node_modules/.bin/babel src -d lib && npm run ast",
"test": "mocha --require @babel/register",
"test:watch": "mocha -w --require @babel/register",
"ast": "simple-ast --adaptor ./src/Adaptor.js --output ast.json",
"postversion": "git push && git push --tags",
"version": "npm run build && git add -A lib ast.json"
},
"author": "Open Function Group",
"license": "LGPLv3",
"files": [
"lib/",
"ast.json"
],
"dependencies": {
"@openfn/language-common": "1.7.1",
"cheerio": "^1.0.0-rc.10",
"cheerio-tableparser": "1.0.1",
"csv-parse": "^4.8.3",
"request": "^2.72.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-function-bind": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-stage-0": "^7.8.3",
"@babel/register": "^7.9.0",
"@openfn/simple-ast": "^0.4.1",
"assertion-error": "^1.0.1",
"chai": "^3.4.0",
"deep-eql": "^0.1.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"jsdoc": "^3.6.10",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"prettier": "^2.0.4",
"sinon": "^1.17.2"
},
"directories": {
"lib": "./lib"
},
"bundledDependencies": [
"@openfn/language-common",
"cheerio",
"cheerio-tableparser",
"csv-parse",
"request"
]
}