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 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.05 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
{
"name": "@bentley/imodel-changeset-test-utility",
"version": "0.0.56",
"main": "lib/index.js",
"typings": "lib/index",
"description": "Creates and pushes configurable change sets to iModels",
"license": "MIT",
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"clean-output": "rimraf ./lib/output",
"lint": "tslint --project .",
"start": "node ./lib/IModelChangesetCLUtility.js",
"test": "node ./node_modules/@bentley/build-tools/scripts/test.js --grep \"#integration\" --invert",
"test:integration": "mocha --timeout 300000 --require ts-node/register --require source-map-support/register ./src/test/**/*.test.ts --grep \"#integration\"",
"cover": "npm run clean-output && nyc mocha --timeout 300000 --require ts-node/register --require source-map-support/register ./src/test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/imodeljs/imodel-changeset-test-utility"
},
"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",
"minimist": "^1.2.0",
"path": "^0.12.7"
},
"devDependencies": {
"@bentley/build-tools": "1.2.0",
"@types/chai": "^4.1.4",
"@types/mocha": "^2.2.48",
"@types/node": "^10.5.7",
"chai": "^4.1.2",
"debug": "^3.1.0",
"mocha": "^5.2.0",
"nyc": "^14.0.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
}
}