-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.33 KB
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
{
"name": "smsapi",
"description": "Official client for sending SMS and account management on SMSAPI",
"version": "2.1.3",
"license": "Apache-2.0",
"author": "SMSAPI <info@smsapi.pl>",
"repository": "github:smsapi/smsapi-javascript-client",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsup src/index.ts --dts --minify terser --treeshake",
"lint": "eslint .",
"test": "jest",
"test:watch": "jest --watchAll --verbose",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.38.0",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.14.201",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"globals": "^16.5.0",
"jest": "^30.0.5",
"lodash": "^4.17.21",
"nock": "^14.0.6",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"terser": "^5.43.1",
"tslib": "^2.8.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18"
}
}