This repository was archived by the owner on Feb 13, 2024. 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
68 lines (68 loc) · 2 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "so-user",
"version": "0.0.1",
"description": "SO-USER - short link and user comparisons for Stack Overflow",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc --project tsconfig.json",
"typecheck": "tsc --noEmit -p ./tsconfig.json",
"start": "node dist/index.js",
"dev": "node --loader ts-node/esm src/index.ts",
"test": "npm run typecheck && mocha",
"coverage": "c8 mocha"
},
"author": {
"name": "Samuel Liew",
"url": "https://so-user.com/584192?tab=profile"
},
"contributors": [
{
"name": "Oleg Valter",
"url": "https://stackoverflow.com/users/11407695"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/samliew/so-user.git"
},
"bugs": {
"url": "https://github.com/samliew/so-user/issues"
},
"homepage": "https://github.com/samliew/so-user#readme",
"engines": {
"npm": "7.x",
"node": "14.x"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"express": "^4.17.3",
"html-entities": "^2.3.2",
"jsdom": "^18.0.0",
"ramda": "^0.27.1",
"sanitize-html": "^2.5.1",
"ts-node": "^10.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/cheerio": "^0.22.30",
"@types/express": "^4.17.13",
"@types/heroku-client": "^3.1.0",
"@types/jsdom": "^16.2.13",
"@types/mocha": "^9.0.0",
"@types/ramda": "^0.27.45",
"@types/sanitize-html": "^2.3.2",
"@types/sinon": "^10.0.4",
"@userscripters/stackexchange-api-types": "^3.1.1",
"c8": "^7.9.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.2.2",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"typescript": "^4.5.4"
},
"type": "module"
}