-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "vestaboard-api",
"version": "2.1.8",
"description": "vestaboard api wrapper node/ts",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"repository": {
"url": "https://github.com/mark-thomas/vestaboard-api"
},
"files": [
"lib/"
],
"scripts": {
"test": "npm run tsc && jest",
"test-offline": "npm run tsc && jest --testNamePattern='offline'",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run tsc"
},
"author": "Mark Thomas <[email protected]>",
"license": "ISC",
"dependencies": {
"axios": "^1.6.2",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.2.1",
"ts-jest": "^29.1.1",
"typescript": "^4.1.3"
}
}