forked from AfterShip/phone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.18 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
{
"name": "phone",
"version": "2.0.0",
"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",
"lint": "eslint .",
"build": "webpack --hide-modules --progress",
"start:example": "yarn build && webpack-dev-server --config ./example/webpack.config.js --progress",
"prepublishOnly": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/aftership/phone"
},
"bugs": {
"url": "https://github.com/aftership/phone/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"codecov": "^2.3.1",
"eslint": "^4.5.0",
"eslint-config-aftership": "^4.0.2",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.2.1",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.9.1"
},
"keywords": [
"phone",
"e.164"
],
"author": "AfterShip",
"license": "MIT",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}