-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.16 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
{
"name": "@hackmd/api",
"version": "2.3.0",
"description": "HackMD Node.js API Client",
"main": "dist/index.js",
"declaration": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && tsc -p tsconfig.build.json -d",
"watch": "npm run clean && tsc -p tsconfig.build.json -w",
"prepublishOnly": "npm run build",
"lint": "eslint src --fix --ext .ts",
"test": "jest"
},
"keywords": [
"HackMD",
"API Client"
],
"files": [
"dist/*",
"README.md",
"LICENSE"
],
"author": {
"name": "HackMD",
"email": "[email protected]",
"url": "https://hackmd.io"
},
"license": "MIT",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@types/eslint": "^8.21.0",
"@types/jest": "^29.4.0",
"@types/node": "^13.11.1",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"dotenv": "^16.0.3",
"eslint": "^8.9.0",
"jest": "^29.4.2",
"msw": "^1.0.1",
"rimraf": "^4.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^8.8.2",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^0.25.0",
"tslib": "^1.14.1"
}
}