-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "@factiva/core",
"version": "1.0.0",
"description": "",
"main": "lib/factiva/index.js",
"scripts": {
"start": "node src/factiva/index.js",
"test": "mocha",
"babel": "./node_modules/.bin/babel src --out-dir lib",
"lint": "eslint src/**",
"lint-fix": "eslint --fix --ext .js,.jsx .",
"test-debug": "npm run babel && npm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@google-cloud/pubsub": "^2.13.0",
"axios": "^0.21.4",
"chai-as-promised": "^7.1.1",
"config": "^3.3.6",
"dataframe-js": "^1.4.4",
"http-errors": "^1.6.3",
"restify": "^8.6.0"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"chai": "^4.3.4",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"jsdoc": "^3.6.7",
"mocha": "^8.3.2",
"prettier": "^2.3.1"
}
}