-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "schoolsoft",
"version": "2.1.0",
"description": "Unofficial reverse enginereed SchoolSoft API",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"type": "module",
"scripts": {
"format": "prettier --write \"{src,__tests__}/**/*.ts\"",
"lint": "eslint \"{src,__tests__}/**/*.ts\"",
"build": "tsc",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest --runInBand",
"prepublishOnly": "npm run format && npm run lint && npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CarelessInternet/node-schoolsoft.git"
},
"keywords": [
"schoolsoft",
"api",
"wrapper"
],
"author": "CarelessInternet",
"license": "MIT",
"bugs": {
"url": "https://github.com/CarelessInternet/node-schoolsoft/issues"
},
"homepage": "https://github.com/CarelessInternet/node-schoolsoft#readme",
"devDependencies": {
"@types/jest": "^29.2.2",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unicorn": "^44.0.2",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=18"
},
"files": [
"dist/src/**/*"
]
}