-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "@ecwid/sdk",
"version": "0.8.0",
"description": "Lightweight SDK library to access Ecwid API functions.",
"author": "Ecwid",
"license": "Apache-2.0",
"keywords": [
"ecwid",
"sdk",
"api"
],
"main": "dist/ecommerce.js",
"types": "dist/ecommerce.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Ecwid/ecwid-js-sdk.git"
},
"files": [
"dist"
],
"scripts": {
"preinstall": "npm install --package-lock-only --ignore-scripts && npx npm-force-resolutions",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"build": "tsc && rollup --config rollup.config.js",
"test": "jest --coverage",
"prepublishOnly": "npm run lint && npm test && npm run build",
"doc": "jsdoc -c jsdoc.json"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^27.0.2",
"@types/jest-when": "^2.7.3",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.2.0",
"better-docs": "^2.3.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.1.0",
"jest-when": "^3.3.1",
"jsdoc": "^3.6.7",
"rollup": "^2.57.0",
"rollup-plugin-dts": "^3.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5"
},
"engines": {
"node": "18 || 20",
"npm": "9 || 10"
}
}