-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "graphql-url",
"version": "2.0.5",
"description": "A url scalar for graphql",
"main": "dist/index.js",
"scripts": {
"prepublish": "rm -rf dist && mkdir -p dist && babel lib --out-dir dist",
"test": "nyc babel-tape-runner test/*-test.js && miclint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/micnews/graphql-url.git"
},
"keywords": [
"graphql"
],
"author": "mic.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/micnews/graphql-url/issues"
},
"homepage": "https://github.com/micnews/graphql-url#readme",
"dependencies": {
"assert-err": "^1.1.0",
"is-relative-url": "^2.0.0",
"is-url-superb": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-tape-runner": "^2.0.1",
"graphql": "^0.6.2 || ^0.7.0 || ^0.8.0",
"miclint": "^3.0.0",
"nyc": "^10.0.0",
"tapava": "^2.3.0"
},
"peerDependencies": {
"graphql": "^0.6.2 || ^0.7.0 || ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0"
}
}