generated from sindresorhus/node-module-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.26 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
54
55
56
57
58
59
60
61
62
{
"name": "httpsms",
"version": "0.0.4",
"description": "Client for the httpSMS API",
"license": "MIT",
"funding": "https://github.com/sponsors/NdoleStudio",
"repository": "https://github.com/NdoleStudio/httpsms-node",
"author": {
"name": "Arnold Ewin Acho",
"email": "[email protected]",
"url": "https://acho.arnold.cm"
},
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "xo --env=node && npm run build && mocha -r ts-node/register 'tests/**/*.js'",
"build": "del-cli dist && tsc",
"prepack": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"httpsms"
],
"devDependencies": {
"@sindresorhus/tsconfig": "^7.0.0",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.6",
"chai": "^5.0.0",
"del-cli": "^6.0.0",
"mocha": "^11.0.1",
"msw": "^2.1.2",
"ts-node": "^10.9.2",
"tsd": "^0.31.0",
"xo": "^0.60.0"
},
"dependencies": {
"@types/node": "^22.0.2",
"axios": "^1.6.5"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 4,
"semi": true,
"bracketSpacing": false,
"arrowParens": "avoid",
"singleQuote": true
},
"xo": {
"rules": {
"n/file-extension-in-import": 0
}
}
}