-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "gelato-api",
"version": "1.0.5",
"description": "Gelato API Client in JavaScript/TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"test:e2e": "jest --config jest.config.js --rootDir e2e",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denkan/gelato-api.git"
},
"keywords": [
"gelato",
"api",
"gelato api client",
"print api"
],
"author": "Dennis Nyström",
"license": "MIT",
"bugs": {
"url": "https://github.com/denkan/gelato-api/issues"
},
"homepage": "https://github.com/denkan/gelato-api#readme",
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"dotenv": "^10.0.0",
"eslint": "^7.11.0",
"eslint-plugin-jest": "^24.1.0",
"jest": "^26.6.0",
"prettier": "^2.3.0",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"files": [
"dist/**/*"
],
"dependencies": {
"axios": "^0.24.0"
}
}