This repository has been archived by the owner on Sep 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.38 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
73
74
75
76
77
78
79
80
81
82
{
"name": "@bentley/imodel-query-agent",
"version": "0.0.0",
"private": true,
"description": "Demonstrates using iModel.js to create an agent that queries changes to an iModel",
"license": "MIT",
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"clean-output": "rimraf ./lib/output",
"lint": "tslint --project .",
"test": "node ./node_modules/@bentley/build-tools/scripts/test.js --grep \"#integration\" --invert",
"test:integration": "npm run clean-output && mocha --timeout 240000 --require ts-node/register --require source-map-support/register ./src/test/**/*.test.ts --grep \"#integration\"",
"cover": "npm run clean-output && nyc mocha --timeout 240000 --require ts-node/register --require source-map-support/register ./src/test/**/*.test.ts",
"start:debug": "node --inspect=12345 ./lib/Main.js",
"start": "node ./lib/Main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/imodeljs/imodel-query-agent"
},
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"dependencies": {
"@bentley/bentleyjs-core": "1.2.0",
"@bentley/geometry-core": "1.2.0",
"@bentley/imodeljs-backend": "1.2.0",
"@bentley/imodeljs-clients": "1.2.0",
"@bentley/imodeljs-clients-backend": "1.2.0",
"@bentley/imodeljs-common": "1.2.0",
"body-parser": "^1.18.3",
"express": "^4.16.3",
"minimist": "^1.2.0",
"path": "^0.12.7"
},
"devDependencies": {
"@bentley/build-tools": "1.2.0",
"@bentley/imodel-changeset-test-utility": "0.0.56",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.4",
"@types/express": "^4.16.0",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.48",
"@types/node": "^10.5.7",
"@types/supertest": "^2.0.5",
"chai": "^4.1.2",
"debug": "^3.1.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^13.3.0",
"supertest": "^3.1.0",
"tslint": "^5.11.0",
"typemoq": "^2.1.0",
"typescript": "^3.5.0"
},
"nyc": {
"include": [
"./src/**/*.ts"
],
"exclude": [
"./src/test/*",
"**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"source-map-support/register",
"ts-node/register"
],
"reporter": [
"text",
"text-summary",
"lcov",
"cobertura"
],
"report-dir": "./lib/test/coverage",
"all": true
}
}