-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"name": "pine-ql",
"version": "0.5.4",
"main": "src/index.js",
"scripts": {
"start": "node . server",
"cov": "istanbul cover node_modules/mocha/bin/_mocha -- -u exports -R spec test/index.js",
"test": "mocha test/test.spec.js",
"lint:eslint": "eslint",
"lint:staged": "lint-staged"
},
"lint-staged": {
"*.js": "lint:eslint"
},
"pre-commit": "lint:staged",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.9.0",
"mocha": "^4.0.1",
"response-ql": "^1.3.0",
"should": "^13.1.2"
},
"dependencies": {
"keyget": "^1.0.1",
"typed-props": "^0.6.0"
},
"description": "PineQL is lightweight GraphQL-like library. It's based on [typed-props](https://npmjs/packages/typed-props) and [response-ql](https://npmjs/packages/response-ql) libraries.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevLabWorkSpace/pine-ql.git"
},
"keywords": [
"data",
"population",
"rely"
],
"author": "rumkin",
"bugs": {
"url": "https://github.com/DevLabWorkSpace/pine-ql/issues"
},
"homepage": "https://github.com/DevLabWorkSpace/pine-ql#readme"
}