-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "url-buddy",
"version": "1.0.0",
"description": "Parse URL strings and extract multiple properties from them.",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/oskarcieslik/url-buddy.git"
},
"homepage": "https://github.com/oskarcieslik/url-buddy#readme",
"bugs": {
"url": "https://github.com/oskarcieslik/url-buddy/issues"
},
"author": {
"name": "rpunkfu",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "make build",
"start": "make start",
"test": "make test"
},
"devDependencies": {
"ava": "^0.17.0",
"ava-spec": "^1.0.1",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"codecov": "1.0.1",
"conventional-changelog": "1.1.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"lodash": "^4.17.2",
"nyc": "^10.0.0"
},
"dependencies": {
"url-regex": "^4.0.0"
},
"directories": {
"test": "test"
},
"ava": {
"require": [
"babel-register"
]
}
}