forked from GeovaneSchmitz/sigaa-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·69 lines (69 loc) · 2.22 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "sigaa-api",
"description": "Unofficial high performance API for SIGAA IFSC using web scraping.",
"version": "1.0.34",
"main": "dist/sigaa-all-types.js",
"types": "dist/sigaa-all-types.d.ts",
"author": "Geovane Schmitz <contato@geovanems.com.br>",
"license": "MIT",
"private": false,
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"formdata-node": "^3.6.3",
"he": "^1.2.0",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.20",
"source-map-support": "^0.5.19"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeovaneSchmitz/sigaa-api"
},
"keywords": [
"sigaa",
"api",
"web-scraping",
"typescript"
],
"scripts": {
"build": "tsc --emitDeclarationOnly && babel src --extensions .ts --out-dir dist && node fix-declaration-paths.js",
"test": "jest --config jestconfig.json",
"docs": "typedoc --categorizeByGroup --out docs src/sigaa-all-types.ts",
"prepare": "npm run build"
},
"engines": {
"node": ">=15.0.0"
},
"files": [
"dist/**"
],
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@types/cheerio": "^0.22.30",
"@types/he": "^1.1.2",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.172",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-source-map-support": "^2.1.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.4",
"typedoc": "^0.21.5",
"typescript": "^4.3.5"
}
}