-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.66 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "material-ui-phone-input",
"version": "1.1.9",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf build && npm run compile",
"ci": "npm run build && npm run lint && npm test",
"compile": "tsc -p tsconfig.prod.json",
"compile-watch": "tsc -w -p tsconfig.prod.json",
"test": "mocha 'test/**/*.ts*' --require=ts-node/register --require mocha-clean",
"bundle-watch": "webpack-dev-server --open",
"publish-local": "npm publish --registry=http://localhost:4873 --force",
"lint": "tslint --fix '{src,test}/**/*.ts*'",
"bundle": "webpack --config webpack.config.prod.js",
"bundle-dev": "webpack",
"coverage": "nyc --extension=.ts --extension=.tsx --include='src/**/*.ts*' --all --reporter=html mocha --require=ts-node/register --require=source-map-support/register --recursive 'test/**/*.ts*'",
"codecov": "nyc report --reporter=json && codecov -f coverage/*.json",
"lock": "git add 'package-lock.json' && (git diff-index --quiet HEAD || git commit -m 'Lock [ci ckip]')",
"cd": "standard-version -m \"chore(release): %s [ci skip]\" && npm publish && git push --follow-tags origin master"
},
"files": [
"lib"
],
"author": "",
"license": "ISC",
"peerDependencies": {
"@material-ui/core": "*",
"@material-ui/icons": "*",
"react": "*",
"classnames": "*"
},
"dependencies": {
"@types/google-libphonenumber": "^7.4.16",
"@types/react-select": "^2.0.3",
"@types/react-text-mask": "^5.4.2",
"country-data": "0.0.31",
"libphonenumber": "0.0.10",
"libphonenumber-js": "^1.4.4",
"react-virtualized": "^9.18.0"
},
"devDependencies": {
"@material-ui/core": "^3.2.0",
"@material-ui/icons": "^3.0.1",
"@types/classnames": "^2.2.6",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"@types/react": "^16.4.16",
"@types/react-dom": "^16.0.8",
"@types/react-test-renderer": "^16.0.3",
"@types/react-transition-group": "^2.0.11",
"@types/react-virtualized": "^9.18.7",
"@types/webpack-env": "^1.13.6",
"babel-core": "^6.26.3",
"classnames": "^2.2.6",
"codecov": "^3.1.0",
"dynamic-cdn-webpack-plugin": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"mocha-clean": "^1.0.0",
"module-to-cdn": "^3.1.2",
"nyc": "^13.0.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.5.2",
"standard-version": "^4.4.0",
"ts-node": "^7.0.1",
"tslint": "^5.10.0",
"typescript": "^3.1.1",
"webpack": "^4.20.2",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}