This repository was archived by the owner on Dec 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.31 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.31 KB
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
{
"name": "composedql",
"version": "0.7.4",
"description": "Composed query language parser",
"main": "index.js",
"scripts": {
"lint": "jshint --reporter node_modules/jshint-stylish lib/*.js test/*.js",
"lint:build": "jshint --reporter checkstyle lib/*.js test/*.js > reports/jshint-checkstyle.xml",
"depcheck": "dependency-check . lib/*.js",
"depcheck:unused": "dependency-check ./package.json --unused --no-dev lib/*.js",
"test:unit": "mkdir -p reports/ && NODE_ENV=test multi='spec=- xunit=reports/mocha-xunit.xml' istanbul cover _mocha -- -R mocha-multi && istanbul check-coverage",
"test:coveralls": "cat reports/coverage/lcov.info | node_modules/coveralls/bin/coveralls.js",
"test": "npm run lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/devfacet/composedql.git"
},
"keywords": [
"composed",
"query",
"language",
"json",
"object",
"rest",
"resource",
"uri",
"url"
],
"author": "devfacet",
"license": "MIT",
"homepage": "http://github.com/devfacet/composedql",
"devDependencies": {
"chai": "3.5.x",
"jshint": "2.9.x",
"jshint-stylish": "2.2.x",
"mocha": "3.2.x",
"mocha-multi": "0.10.x",
"dependency-check": "2.8.x",
"istanbul": "0.4.x",
"coveralls": "^2.11.16"
}
}