-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 777 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 777 Bytes
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
{
"name": "graphql-scalar-int53",
"repository": "https://github.com/nakedible/graphql-scalar-int53.git",
"author": "Nuutti Kotivuori <naked@iki.fi>",
"version": "1.0.0",
"description": "GraphQL Int53 Scalar Type",
"main": "./dist/index.js",
"license": "MIT",
"scripts": {
"build": "babel src --presets es2015,stage-2 --out-dir dist",
"prepublish": "npm run build",
"test": "jest",
"coverage": "jest --coverage"
},
"peerDependencies": {
"graphql": "*"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.0.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"graphql": "^0.12.3",
"jest": "^22.0.4"
}
}