-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.29 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
{
"name": "@swinc/fetch-ppubs-patents",
"version": "6.0.1",
"description": "A Nodejs TypeScript/JavaScript library for pulling patents from the USPTO Patent Public Search API",
"keywords": [
"patent",
"patent-search",
"patent-data"
],
"repository": {
"type": "git",
"url": "https://github.com/swinc/fetch-ppubs-patents"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"preversion": "npm test && npm run build && npm run test:js",
"test": "mocha --config mocharc.ts.src.yaml",
"test:js": "mocha --config mocharc.js.dist.yaml"
},
"author": "Iain R. Cunningham",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.28.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.3"
},
"dependencies": {
"axios": "^1.2.0"
}
}