forked from graphql/graphql-scalars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 852 Bytes
/
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
{
"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}\"",
"format": "prettier --write \"**/*.{md,yml,yaml,json}\"",
"test:build": "OUT_DIR=$(mktemp -d) ./build.sh",
"build": "OUT_DIR=public ./build.sh",
"watch": "nodemon -e json,md --exec \"npm run build\""
},
"devDependencies": {
"cspell": "6.18.1",
"nodemon": "2.0.20",
"prettier": "2.8.2",
"spec-md": "3.1.0"
},
"prettier": {
"proseWrap": "always",
"trailingComma": "none"
}
}