-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.27 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
{
"name": "@fattureincloud/fattureincloud-ts-sdk",
"version": "2.1.1",
"description": "TypeScript SDK for the Fatture in Cloud API",
"author": "Fatture in Cloud API Team",
"keywords": [
"axios",
"typescript",
"openapi-client",
"openapi-generator",
"@fattureincloud/fattureincloud-ts-sdk"
],
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"sideEffects": false,
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"prepare": "npm run build",
"test": "mocha -r ts-node/register 'test/**/*.ts'"
},
"dependencies": {
"axios": "^1.6.1",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/node": "12.11.5 - 12.20.42",
"typescript": "^4.0 || ^5.0",
"ts-node": "^10.7.0",
"chai": "^4.3.6",
"@types/chai": "^4.3.0",
"mocha": "^8.0.1",
"@types/mocha": "^9.1.0",
"sinon": "^7.2.0",
"@types/sinon": "^10.0.11",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.0",
"eslint-plugin-promise": "^6.0.0"
}
}