-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
{
"name": "graphql-scalars",
"private": true,
"license": "OWFa-1.0",
"homepage": "https://scalars.graphql.org/",
"repository": {
"type": "git",
"url": "http://github.com/graphql/graphql-scalars.git"
},
"scripts": {
"test": "npm run test:spelling && npm run test:format && npm run test:build",
"test:spelling": "cspell \"**/*.md\"",
"test:format": "prettier --check \"**/*.{md,yml,yaml,json,ts}\"",
"format": "prettier --write \"**/*.{md,yml,yaml,json,ts}\"",
"test:build": "OUT_DIR=$(mktemp -d) tsx build.ts",
"build": "OUT_DIR=public tsx build.ts",
"watch": "nodemon -e json,md --exec \"npm run build\""
},
"devDependencies": {
"@types/node": "^20.11.5",
"cspell": "6.18.1",
"nodemon": "2.0.20",
"prettier": "2.8.2",
"spec-md": "3.1.0",
"tsx": "^4.7.0"
},
"prettier": {
"proseWrap": "always",
"trailingComma": "none"
},
"cspell": {
"words": [
"ABNF",
"apollographql",
"fullyear",
"mday",
"numoffset",
"secfrac"
]
}
}