forked from AfterShip/phone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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": "phone",
"version": "2.4.21",
"description": "With a given country and phone number, validate and format the phone number to E.164 standard",
"main": "./dist/index.js",
"engines": {
"node": ">=6.10.0"
},
"directories": {
"lib": "./lib"
},
"scripts": {
"test": "jest && codecov",
"test:watch": "jest --watch",
"test:update": "jest --updateSnapshot",
"lint": "eslint .",
"build": "webpack --hide-modules --progress",
"start:example": "yarn build && webpack-dev-server --config ./example/webpack.config.js --progress",
"prepublishOnly": "yarn build",
"fix:numbers": "ts-node -P scripts/add-new-rules/tsconfig.json scripts/add-new-rules"
},
"repository": {
"type": "git",
"url": "https://github.com/aftership/phone"
},
"bugs": {
"url": "https://github.com/aftership/phone/issues"
},
"devDependencies": {
"@types/node": "^14.0.26",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.5",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"codecov": "^3.7.2",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-aftership": "^5.1.0",
"eslint-plugin-import": "^2.22.0",
"idempotent-babel-polyfill": "^7.4.4",
"jest": "^25.5.4",
"lodash": "^4.17.19",
"ts-node": "^8.10.2",
"twilio": "^3.48.1",
"typescript": "^3.9.7",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-sources": "^1.4.3"
},
"keywords": [
"phone",
"e.164"
],
"author": "AfterShip",
"license": "MIT",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}