-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
36 lines (36 loc) · 924 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
30
31
32
33
34
35
36
{
"name": "groq-spec",
"version": "1.0.0",
"description": "Specification for GROQ - Graph Oriented Query Language",
"main": "index.js",
"scripts": {
"test": "spec-md spec/GROQ.md > /dev/null",
"clean": "rimraf out",
"format": "prettier -w spec scripts",
"format:check": "prettier -c spec scripts",
"build": "mkdir -p out && spec-md spec/GROQ.md > out/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanity-io/GROQ.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/sanity-io/GROQ/issues"
},
"homepage": "https://github.com/sanity-io/GROQ#readme",
"devDependencies": {
"date-fns": "^2.19.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"spec-md": "^3.0.2"
},
"prettier": {
"semi": false,
"printWidth": 100,
"bracketSpacing": false,
"singleQuote": true
}
}