-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.34 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
{
"name": "ecoledirecte.js",
"version": "1.0.0",
"description": "Good-looking client for EcoleDirecte's private API.",
"repository": {
"type": "git",
"url": "git://github.com/a2br/ecoledirecte.js.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"ecoledirecte"
],
"scripts": {
"prepare": "npm run build",
"start": "npm run build && node dist/index.js",
"build": "tsc && npm run copy-dts",
"lint": "eslint",
"pretty": "prettier -w .",
"check": "npm run pretty && npm run lint",
"test": "echo ED demo account unavailable. && exit 0",
"copy-dts": "copyfiles -u 1 \"lib/**/*.d.ts\" dist"
},
"author": "a2br",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/eslint": "*",
"@types/html-to-text": "^8.0.0",
"@types/jest": "^27.0.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.14.6",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"copyfiles": "^2.4.1",
"dotenv": "^16.0.0",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-plugin-prettier": "*",
"jest": "^27.0.1",
"prettier": "*",
"ts-jest": "^27.0.1",
"typescript": "^4.2.2"
},
"dependencies": {
"ecoledirecte-api-types": "^0.14.0",
"html-to-text": "^8.0.0",
"mime-types": "^2.1.35",
"node-fetch": "^2.6.7"
}
}