-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "universities",
"version": "0.0.1",
"description": "",
"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/universities.git"
},
"keywords": [
"university",
"college",
"universities",
"colleges",
"school",
"schools",
"education",
"higher education"
],
"author": "Vaporjawn",
"license": "ISC",
"bugs": {
"url": "https://github.com/Vaporjawn/universities/issues"
},
"homepage": "https://github.com/Vaporjawn/universities#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.0.1",
"jest": "^29.7.0",
"jsdoc": "^4.0.2",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"ts-node": "^10.9.2"
}
}