-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "graphql-type-datetime",
"version": "0.2.4",
"description": "DateTime scalar type for GraphQL.js",
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"build": "rimraf lib && babel src -d lib",
"lint": "eslint src test",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waitandseeagency/graphql-type-datetime.git"
},
"keywords": [
"graphql",
"scalar",
"datetime"
],
"author": "Johann Pinson",
"license": "MIT",
"bugs": {
"url": "https://github.com/waitandseeagency/graphql-type-datetime/issues"
},
"homepage": "https://github.com/waitandseeagency/graphql-type-datetime#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"moment": "^2.22.2"
},
"peerDependencies": {
"graphql": "^0.13.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}