-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "sort-graphql-schema",
"version": "1.0.0",
"description": "Sort JSON GraphQL schemas for commit consistency",
"author": "David Hérault <[email protected]> (https://github.com/dherault)",
"license": "MIT",
"main": "sortSchema.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nelson-ai/sort-graphql-schema.git"
},
"bugs": {
"url": "https://github.com/nelson-ai/sort-graphql-schema/issues"
},
"homepage": "https://github.com/nelson-ai/sort-graphql-schema#readme",
"scripts": {
"test": "./node_modules/.bin/mocha $npm_package_options_mocha",
"coverage": "./node_modules/.bin/istanbul cover _mocha -- $npm_package_options_mocha",
"coverage:serve": "cd coverage/lcov-report && python -m SimpleHTTPServer",
"coverage:all": "npm run coverage && npm run coverage:serve"
},
"options": {
"mocha": "--bail --check-leaks"
},
"keywords": [
"GraphQL",
"schema",
"JSON",
"sort"
],
"contributors": [
"سید مرتضی موسوی (https://github.com/smmoosavi)"
],
"engines": {
"node": ">=6.9.1"
},
"bin": {
"sort-graphql-schema": "./cli.js"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.12.2",
"eslint-config-nelson": "^0.1.0",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0"
}
}