-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.61 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
51
52
53
54
55
56
{
"name": "node-discourse-api",
"version": "0.1.4",
"description": "A node api for discourse",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"prepublishOnly": "tsc && tsc-alias",
"postpublish": "git push origin main",
"devprepare": "husky install",
"build": "tsc && tsc-alias",
"pretty": "prettier -c .",
"pretty:fix": "prettier -w .",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --fix --ext .ts,.js",
"autofix": "node .husky/auto-fix.js",
"git:commit": "git add . && git commit",
"git:push": "yarn git:commit && git push origin main",
"doc:generate": "typedoc",
"test": "node .husky/tester.js full"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lhcfl/node-discourse-api.git"
},
"author": "Lhcfl <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lhcfl/node-discourse-api/issues"
},
"homepage": "https://github.com/Lhcfl/node-discourse-api#readme",
"dependencies": {
"@types/express-serve-static-core": "^4.17.37",
"axios": "^1.5.1",
"eventemitter3": "^5.0.1",
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.18",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}