-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.89 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.89 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"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/ && eslint --config tests/.eslintrc tests/**/*.js",
"lint:fix": "eslint --ext ts src/ --fix && eslint --config tests/.eslintrc tests/**/*.js --fix",
"precheck": "npm run lint",
"check": "npm test",
"start": "webpack --config webpack.config.js && http-server docs -o",
"webpack": "webpack --config webpack.config.js",
"release": "tsc && webpack --config webpack.config.js",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"prepare": "husky"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/tests/e2e/"
]
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
],
"tests/**/*.js": [
"eslint --config tests/.eslintrc --fix"
]
},
"author": "gverni",
"homepage": "https://twiliodeved.github.io/message-segment-calculator/",
"license": "MIT",
"overrides": {
"flatted": "^3.4.0"
},
"dependencies": {
"grapheme-splitter": "^1.0.4"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^18.11.18",
"chalk": "^4.1.2",
"eslint": "^8.31.0",
"eslint-config-twilio-ts": "^2.0.0",
"http-server": "^14.1.1",
"husky": "^9.1.7",
"jest": "^29.3.1",
"lint-staged": "^16.4.0",
"terser-webpack-plugin": "^5.4.0",
"ts-loader": "^9.2.5",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}