forked from Urigo/graphql-scalars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "graphql-scalars",
"version": "1.0.1",
"description": "A collection of scalar types not included in base GraphQL.",
"repository": {
"type": "git",
"url": "https://github.com/Urigo/graphql-scalars.git"
},
"sideEffects": false,
"main": "dist/commonjs/index.js",
"module": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"typescript": {
"definition": "dist/esnext/index.d.ts"
},
"license": "MIT",
"jest": {
"roots": [
"src"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
},
"scripts": {
"clean": "rm -rf dist",
"prebuild": "yarn clean",
"build": "tsc -m esnext --outDir dist/esnext && tsc -m commonjs --outDir dist/commonjs",
"test": "jest --forceExit --runInBand && yarn bundlesize",
"prepare-release": "yarn build && yarn test",
"release": "yarn prepare-release && npm publish",
"ci:release:canary": "node bump.js && npm publish --tag alpha --access public",
"bundlesize": "yarn build && cd bundle-test/ && yarn && yarn test"
},
"devDependencies": {
"@types/graphql": "14.2.3",
"@types/jest": "24.0.18",
"graphql": "14.5.3",
"graphql-tools": "4.0.5",
"jest": "24.9.0",
"lint-staged": "9.2.3",
"merge-graphql-schemas": "1.7.0",
"semver": "6.3.0",
"ts-jest": "24.0.2",
"tslint": "5.19.0",
"typescript": "3.5.3"
},
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"*.{js,json,css,md,ts,tsx}": [
"prettier --write",
"git add -f"
]
},
"dependencies": {
"graphql-type-json": "0.3.0"
}
}