-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "@d10221/graphql-scalar-json5",
"version": "0.1.0-8",
"description": "GraphQL JSON5 scalar type",
"main": "cjs/index.js",
"module": "index.js",
"types": "cjs/index.d.ts",
"files": [
"index.js",
"cjs"
],
"scripts": {
"test": "jest --ci --env=node",
"build": "tsc -p .",
"pretty": "prettier ./*.js ./*.md ./*.json ./test/**/*.js --write",
"prepare": "npm run build && npm test && npm run pretty",
"release": "release-it"
},
"keywords": [
"graphql",
"scalar",
"json5"
],
"author": "Mr D.",
"license": "MIT",
"peerDependencies": {
"graphql": "^15.2.0",
"json5": "*"
},
"devDependencies": {
"@babel/preset-env": "^7.10.3",
"@types/jest": "^26.0.3",
"@types/json5": "^0.0.30",
"graphql": "^15.2.0",
"graphql-tools": "^6.0.11",
"jest": "^26.1.0",
"json5": "^2.1.3",
"prettier": "^2.0.5",
"release-it": "^13.6.4",
"typescript": "^3.9.5"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/d10221/graphql-scalar-json5.git"
},
"bugs": {
"url": "https://github.com/d10221/graphql-scalar-json5/issues"
},
"homepage": "https://github.com/d10221/graphql-scalar-json5#readme"
}