forked from certinia/orizuru-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.52 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
{
"name": "orizuru",
"version": "0.0.0",
"description": "Dreamforce sample app for google maps integration",
"scripts": {
"deploy": "orizuru d",
"pretest": "eslint src/node",
"single-test": "nyc --all=false mocha",
"test": "nyc mocha --recursive src/node/spec",
"generate-apex-transport": "orizuru s gat src/node/res/schema/public src/apex/force/main/default/classes"
},
"repository": {
"type": "git",
"url": "https://stash.dev.financialforce.com/projects/RESEARCH/repos/orizuru/browse"
},
"keywords": [
"dreamforce",
"sample",
"google",
"maps",
"api"
],
"author": "financialforce",
"license": "BSD-3-Clause",
"dependencies": {
"@financialforcedev/orizuru": "^5.1.0",
"@financialforcedev/orizuru-auth": "^3.0.3",
"@financialforcedev/orizuru-transport-rabbitmq": "^3.0.3",
"bluebird": "3.5.1",
"debug-plus": "1.2.2",
"jsforce": "1.9.0",
"lodash": "4.17.10"
},
"devDependencies": {
"@financialforcedev/eslint-config": "^4.0.0",
"@financialforcedev/orizuru-tools": "^1.0.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"mocha": "5.2.0",
"nyc": "12.0.2",
"proxyquire": "2.0.1",
"sinon": "6.1.5",
"sinon-chai": "3.2.0",
"supertest": "3.1.0"
},
"engines": {
"node": "8.11.3",
"npm": "6.3.0"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"src/node"
],
"reporter": [
"lcov",
"html",
"text",
"text-summary"
],
"cache": true,
"all": true
},
"private": true
}