-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.34 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
{
"name": "@openfn/language-twitter",
"version": "1.0.0",
"description": "A twitter adaptor for OpenFn",
"main": "lib/index.js",
"scripts": {
"ast": "simple-ast --adaptor ./src/Adaptor.js --output ast.json",
"build": "node_modules/.bin/babel src -d lib && npm run ast",
"postversion": "git push && git push --tags",
"test": "mocha --require @babel/register",
"test:watch": "mocha -w --require @babel/register",
"version": "npm run build && git add -A lib ast.json"
},
"author": "Open Function Group",
"license": "LGPLv3",
"files": [
"lib/",
"ast.json"
],
"directories": {
"lib": "./lib"
},
"dependencies": {
"@openfn/language-common": "^1.7.1",
"axios": "0.26.1"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@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",
"jsdoc": "^3.6.10",
"mocha": "^9.2.2",
"nock": "^12.0.3",
"sinon": "^1.17.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenFn/adaptor.git"
},
"bundledDependencies": [
"@openfn/language-common",
"axios"
]
}