-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "profi-sms",
"version": "1.0.1",
"description": "profi-sms node.js client for easier use",
"main": "dist/index.js",
"scripts": {
"start": "npx tsdx watch --onSuccess \"node ./dist/index.js\"",
"customtest": "npx nodemon test/test.js",
"build": "npx tsdx build --target node",
"lint": "npx tsdx lint",
"prepare": "npx tsdx build --target node",
"np:publish": "git push origin master && np --no-tests --no-2fa",
"size": "size-limit",
"analyze": "size-limit --why"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maielo/profi-sms.git"
},
"keywords": [
"ts",
"typescript",
"profi-sms",
"js",
"javascript",
"node.js"
],
"author": "Maielo",
"license": "MIT",
"bugs": {
"url": "https://github.com/maielo/profi-sms/issues"
},
"homepage": "https://github.com/maielo/profi-sms#readme",
"dependencies": {
"md5": "^2.3.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"@size-limit/preset-small-lib": "^4.10.2",
"@types/md5": "^2.3.1",
"@types/node-fetch": "^2.5.12",
"@types/request": "^2.48.7",
"babel-runtime": "^6.26.0",
"nodemon": "^2.0.7",
"size-limit": "^4.10.2",
"tslib": "^2.3.0"
}
}