This repository was archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 KB
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
{
"name": "@apolloai/api-client",
"version": "0.10.9",
"description": "Client for the apollo.ai APIs.",
"keywords": [
"api client",
"text processing",
"auto abstract",
"web extraction"
],
"homepage": "https://apollo.ai",
"author": "APOLLO.AI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apolloai/api-client.git"
},
"private": false,
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"lint": "eslint \"src/**/*.ts\"",
"build": "yarn lint && echo Using TypeScript $(tsc --version) && tsc --pretty -p .",
"demo:autoabstract": "yarn ts-node examples/autoabstract.ts",
"demo:extraction": "yarn ts-node examples/extraction.ts",
"test": "jest",
"test:ci": "jest",
"watch": "yarn build --watch"
},
"dependencies": {
"got": "^10",
"lodash": "^4.17.15"
},
"devDependencies": {
"@types/jest": "~25.2.3",
"@types/lodash": "~4.14.155",
"@types/node": "~14.0.11",
"@typescript-eslint/eslint-plugin": "~3.1.0",
"@typescript-eslint/parser": "~3.1.0",
"eslint": "~7.2.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-prettier": "~3.1.3",
"jest": "~26.0.1",
"minimist": "^1.2.5",
"nock": "^12.0.3",
"prettier": "~2.0.5",
"ts-jest": "~26.1.0",
"ts-node": "~8.10.2",
"typescript": "~3.9.5"
}
}