-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "@elifesciences/docmap-ts",
"version": "0.0.41",
"author": "Scott Aubrey <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elifesciences/docmap-ts.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"generate": "ts-node src/cli/generate.ts",
"parse": "ts-node src/cli/parse.ts",
"fetch-and-test-data-hub-docmap": "ts-node src/cli/fetch-and-parse.ts",
"test": "jest",
"lint": "eslint --ext .tsx,.ts src/",
"prepublish": "tsc"
},
"dependencies": {
"@tsconfig/node18": "^1.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3"
}
}