Comparing version 0.0.8 to 0.0.9
@@ -11,3 +11,3 @@ /** | ||
name: 'posts', | ||
propAliases: {author: 'author.slug', tags: 'tags.slug', tag: 'tags.slug'}, | ||
propAliases: {author: 'author.slug', tags: 'tags.slug', tag: 'tags.slug', authors: 'authors.slug'}, | ||
relations: [] | ||
@@ -14,0 +14,0 @@ }, |
{ | ||
"name": "ghost-gql", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "Filter query language for Ghost", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "jison src/gql.y src/gql.l -o dist/parser.js", | ||
"lint": "eslint lib test/*_spec.js", | ||
"test": "npm run build && npm run lint && mocha", | ||
"build": "jison src/gql.y src/gql.l -o dist/parser.js", | ||
"coverage": "istanbul cover -x src --dir=test/coverage --report=lcov _mocha -- test/*_spec.js", | ||
"release": "npm-release patch" | ||
"test": "yarn build && yarn lint && NODE_ENV=testing mocha -- $(find test -name '*_spec.js')", | ||
"coverage": "NODE_ENV=testing istanbul cover --dir test/coverage _mocha -- $(find test -name '*._spec.js')", | ||
"ship": "np" | ||
}, | ||
@@ -34,3 +34,3 @@ "author": "Ghost Foundation", | ||
"mocha": "4.0.1", | ||
"npm-release": "1.0.0", | ||
"np": "2.19.0", | ||
"should": "13.1.0", | ||
@@ -37,0 +37,0 @@ "sinon": "4.0.1" |
@@ -125,6 +125,6 @@ # GQL | ||
In the `/src/` folder is a .l and a .y file used by JISON to generate the parser. `gql.l` is the lexer or tokenizer that defines all of the symbols that GQL can understand. `gql.y` is the grammar, it defines the rules about in what order the symbols must appear. If you make changes to `gql.l` or `gql.y`, you'll need to run `grunt build` in order to generate a new version of the parser in `/dist/`. | ||
In the `/src/` folder is a .l and a .y file used by JISON to generate the parser. `gql.l` is the lexer or tokenizer that defines all of the symbols that GQL can understand. `gql.y` is the grammar, it defines the rules about in what order the symbols must appear. If you make changes to `gql.l` or `gql.y`, you'll need to run `npm run build` in order to generate a new version of the parser in `/dist/`. | ||
# Copyright & License | ||
Copyright (c) 2015-2017 Ghost Foundation - Released under the [MIT license](LICENSE). | ||
Copyright (c) 2015-2018 Ghost Foundation - Released under the [MIT license](LICENSE). Ghost and the Ghost Logo are trademarks of Ghost Foundation Ltd. Please see our [trademark policy](https://ghost.org/trademark/) for info on acceptable usage. |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
134096
21