-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "querycraft",
"version": "0.1.3",
"description": "Data query abstraction layer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"prebuild": "npm run test",
"build": "tsc",
"postbuild": "npm run docs",
"start": "mocha --watch lib/*.* --watch-extensions ts",
"predocs": "rm -rf docs/",
"docs": "typedoc --excludeExternals --exclude '**/*.test.ts' --mode file --theme minimal --out ./docs --tsconfig tsconfig.json lib/",
"postdocs": "touch docs/.nojekyll",
"serve:docs": "http-server -p 8000 docs/",
"serve:cov": "http-server -p 8001 coverage/",
"test": "nyc mocha --reporter mocha-junit-reporter",
"test:cov": "nyc npm test",
"posttest:cov": "nyc report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BeameryHQ/QueryCraft.git"
},
"author": "Dayo Adeyemi",
"license": "MIT",
"bugs": {
"url": "https://github.com/BeameryHQ/QueryCraft/issues"
},
"homepage": "https://github.com/BeameryHQ/QueryCraft#readme",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.44",
"chai": "^4.1.2",
"http-server": "^0.10.0",
"install": "^0.10.1",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.15.0",
"npm": "^5.5.1",
"nyc": "^11.3.0",
"source-map-support": "^0.5.0",
"ts-node": "^3.3.0",
"tui-jsdoc-template": "^1.2.2",
"typedoc": "^0.9.0",
"typescript": "^2.6.1"
},
"nyc": {
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"include": [
"lib/**/*.ts"
],
"exclude": [
"**/*.test.ts",
"**/*.d.ts",
"lib/index.ts"
],
"reporter": [
"lcov"
],
"all": true
},
"dependencies": {}
}