-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "ssmith-is-valid-email",
"version": "1.0.3",
"description": "Checks to see if email is valid.",
"main": "dist/index.js",
"scripts": {
"build": "BABEL_ENV=production babel src -s -D -d dist --presets es2015,stage-0",
"test": "npx nyc --reporter=html mocha --require babel-core/register",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssmith-wombatweb/is-valid-email.git"
},
"keywords": [
"email",
"valid",
"check"
],
"engines": {
"node": "v9.5.0"
},
"author": "Simeon Smith <[email protected]> (https://www.simeonsmith.me)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-minify": "^0.4.3",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"codecov": "^3.0.4",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-react": "^7.10.0",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"nyc": "^12.0.2",
"performance-now": "^2.1.0"
}
}