-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "snapple-facts",
"version": "3.0.0",
"description": "Every Snapple Fact",
"main": "./src/index.js",
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts --ext .js",
"format": "prettier --write . --ext .ts --ext .js",
"check": "npm install && npm run build && npm run format && npm run lint && npm run test:coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vaporjawn/snapple-facts.git"
},
"keywords": [
"Snapple",
"Facts"
],
"author": "Vaporjawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vaporjawn/snapple-facts/issues"
},
"homepage": "https://github.com/Vaporjawn/snapple-facts#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"prettier": "^3.3.2",
"ts-jest": "^29.1.1",
"typescript": "^5.5.3"
},
"dependencies": {
"ts-node": "^10.9.2"
}
}