forked from TryGhost/GQL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "ghost-gql",
"version": "0.0.5",
"description": "Filter query language for Ghost",
"main": "index.js",
"scripts": {
"lint": "jshint src/*.js test/*.js && jscs src/*.js test/*.js",
"test": "npm run lint && mocha",
"build": "jison src/parser/gql.y src/parser/gql.l -o dist/parser.js",
"coverage": "istanbul cover -x dist/**/* --dir=test/coverage --report=lcov ./node_modules/mocha/bin/_mocha -- test/*_spec.js",
"release": "npm-release patch"
},
"author": "Ghost Foundation",
"homepage": "http://ghost.org",
"keywords": [
"ghost",
"api",
"query",
"sql",
"search"
],
"repository": {
"type": "git",
"url": "git://github.com/TryGhost/GQL.git"
},
"license": "MIT",
"dependencies": {
"lodash": "3.10.1",
"knex": "0.8.6"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"chai-bookshelf": "^1.0.0",
"istanbul": "0.4.0",
"jison": "0.4.16",
"jscs": "2.8.0",
"jshint": "2.8.0",
"mocha": "2.2.5",
"npm-release": "1.0.0",
"should": "7.0.1",
"sinon": "1.15.4",
"sqlite3": "^3.1.1"
}
}