-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.2 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
{
"name": "isuri",
"description": "Javascript implementation for truly checking if the provided input is a valid URI, Based on RFC 3986.",
"version": "2.0.3",
"author": {
"name": "David Pate",
"email": "[email protected]",
"url": "http://davidtpate.com"
},
"keywords": [
"uri",
"url",
"iri",
"rfc3986",
"3986"
],
"homepage": "https://github.com/DavidTPate/isuri",
"repository": {
"type": "git",
"url": "https://github.com/DavidTPate/isuri.git"
},
"bugs": {
"url": "https://github.com/DavidTPate/isuri/issues"
},
"license": "MIT",
"main": "index.js",
"dependencies": {
"rfc-3986": "1.0.1"
},
"devDependencies": {
"beautify-benchmark": "0.2.4",
"benchmark": "2.1.4",
"eslint": "4.13.0",
"expose-loader": "^0.7.1",
"istanbul": "0.4.5",
"jscs": "3.0.7",
"jsinspect": "0.12.5",
"mocha": "4.0.1",
"webpack": "3.10.0"
},
"scripts": {
"cover": "istanbul cover _mocha -- --check-leaks --bail test && istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"lint": "eslint . && jscs . && jsinspect .",
"test": "npm run lint && npm run cover",
"build": "webpack"
}
}