-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "graphql-custom-datetype",
"version": "0.5.0",
"description": "Custom date type for graphql",
"main": "dist/datetype.js",
"homepage": "https://github.com/soundtrackyourbrand/graphql-custom-datetype",
"bugs": {
"url": "https://github.com/soundtrackyourbrand/graphql-custom-datetype/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/soundtrackyourbrand/graphql-custom-datetype.git"
},
"peerDependencies": {
"graphql": ">=0.5.0"
},
"devDependencies": {
"babel": "5.8.3",
"babel-core": "5.8.3",
"babel-eslint": "^4.1.3",
"babel-runtime": "5.8.3",
"chai": "3.2.0",
"chai-subset": "1.0.1",
"graphql": "^0.6.0",
"mocha": "2.2.5",
"standard": "^5.3.1"
},
"scripts": {
"prepublish": "npm test && npm run build",
"test": "standard && mocha",
"test-watch": "mocha -w",
"build": "rm -rf dist/* && babel datetype.js --out-dir dist",
"example": "babel-node examples/now.js"
},
"files": [
"dist",
"README.md"
],
"license": "MIT",
"standard": {
"parser": "babel-eslint"
}
}