-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "sms-segments-calculator",
"version": "1.2.0",
"description": "SMS segments calculator",
"repository": {
"type": "git",
"url": "https://github.com/TwilioDevEd/message-segment-calculator"
},
"keywords": [
"sms",
"segments"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"src/**"
],
"scripts": {
"test": "tsc && jest",
"build": "tsc",
"dev": "tsc -w",
"lint": "eslint --ext ts src/",
"lint:fix": "npm run lint -- --fix",
"webpack": "webpack --config webpack.config.js",
"release": "tsc && webpack --config webpack.config.js"
},
"author": "gverni",
"homepage": "https://twiliodeved.github.io/message-segment-calculator/",
"license": "MIT",
"dependencies": {
"grapheme-splitter": "^1.0.4"
},
"devDependencies": {
"@types/node": "^18.11.18",
"chalk": "^5.2.0",
"eslint": "^8.31.0",
"eslint-config-twilio-ts": "^2.0.0",
"jest": "^29.3.1",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}