-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
83 lines (83 loc) · 2.26 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
77
78
79
80
81
82
83
{
"name": "react-password-mask",
"version": "3.3.1",
"description": "Show/hide the contents of a password field.",
"main": "lib/passwordMask.min.js",
"scripts": {
"build": "webpack",
"test": "jest",
"test:update": "jest -u",
"test:watch": "npm test -- --watchAll",
"coverage": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint src test",
"preversion": "npm run build && git add -A lib",
"example": "webpack-dev-server --config example/webpack.config.js",
"example:build": "cross-env NODE_ENV=production webpack --config example/webpack.config.build.js"
},
"jest": {
"testRegex": "(/test/.*|(\\.|/))\\.js?$",
"moduleFileExtensions": [
"js",
"json"
],
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"lcov"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakangelle/react-password-mask.git"
},
"keywords": [
"react",
"component",
"show",
"hide",
"reveal",
"password",
"input",
"field",
"mask"
],
"author": "Zak Angelle",
"license": "MIT",
"bugs": {
"url": "https://github.com/zakangelle/react-password-mask/issues"
},
"homepage": "https://github.com/zakangelle/react-password-mask#readme",
"peerDependencies": {
"react": "^0.14.6 || 15.x.x || 16.x.x",
"prop-types": "^15.3.2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.5.0",
"coveralls": "^2.11.14",
"cross-env": "^3.1.3",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^5.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^3.16.1",
"extract-text-webpack-plugin": "^2.0.0",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"react": "^15.3.2",
"prop-types": "^15.3.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.3.2",
"react-test-renderer": "^15.4.2",
"sinon": "^1.17.6",
"style-loader": "^0.13.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.2.0"
}
}