-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.2 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": "sms-length",
"author": "inkOfPixel srl",
"version": "0.2.0",
"license": "MIT",
"description": "A simple utility function to understand how many sms will be required to send a text message via SMS. Largely inspired by sms-counter.",
"keywords": [
"sms",
"length",
"string",
"encoding",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/inkOfPixel/sms-length"
},
"bugs": {
"url": "https://github.com/inkOfPixel/sms-length/issues"
},
"main": "dist/index.js",
"module": "dist/sms-length.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"sideEffects": false,
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"format": "prettier --write './**/*.ts'"
},
"devDependencies": {
"eslint-plugin-prettier": "3.4.0",
"husky": "6.0.0",
"prettier": "2.3.0",
"tsdx": "0.14.1",
"tslib": "2.2.0",
"typescript": "4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"prettier": {
"endOfLine": "auto"
}
}