-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.76 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
67
68
69
70
71
72
73
{
"name": "graphql-date-scalars",
"description": "GraphQL scalars for Date, DateTime and Time",
"version": "0.2.0",
"author": "Neo Financial Engineering <[email protected]>",
"main": "build/index.js",
"types": "build/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/neofinancial/graphql-date-scalars"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"watch": "tsc --watch -p tsconfig.build.json",
"test": "NODE_ENV=test jest",
"clean": "rimraf build",
"lint": "eslint \"**/*.{ts,js}\"",
"format": "prettier --write \"**/*.{ts,js,json,yaml,yml,md}\"",
"format:check": "prettier --debug-check \"**/*.{ts,js,json,yaml,yml,md}\"",
"prepublishOnly": "rimraf build && tsc -p tsconfig.build.json"
},
"files": [
"/build/**/*.js",
"/build/**/*.d.ts"
],
"keywords": [
"graphql",
"scalars",
"date",
"time",
"datetime",
"node"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"eslint --max-warnings 100"
],
"*.{ts,js,json,yaml,yml,md}": [
"prettier --write"
]
},
"peerDependencies": {
"graphql": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/mockdate": "^3.0.0",
"@types/node": "^16.11.0",
"chalk": "^4.1.2",
"eslint": "7.11.0",
"eslint-config-neo": "0.6.2",
"graphql": "^16.6.0",
"husky": "^3.1.0",
"jest": "^27.2.5",
"jest-matcher-utils": "^27.2.5",
"lint-staged": "^11.2.3",
"mockdate": "^3.0.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.5.2"
}
}