-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "eberts-api",
"version": "1.0.2",
"description": "API for rogerebert.com reviews",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/zkilleb/ebert-api",
"scripts": {
"build": "tsc",
"prettier": "prettier --write ./src/**/*.{js,ts}",
"test": "jest ./src",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"author": "Zachary Killebrew",
"license": "MIT",
"dependencies": {
"axios": "^0.21.4",
"cheerio": "1.0.0-rc.10"
},
"devDependencies": {
"@types/chai": "4.2.19",
"@types/jest": "^29.4.0",
"@types/mocha": "8.2.2",
"chai": "4.3.4",
"jest": "^29.0.0",
"lint": "^0.8.19",
"prettier": "2.4.1",
"ts-jest": "^29.0.5",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "^4.5.0-dev.20210926"
}
}