-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.5 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
{
"name": "@financialforcedev/orizuru-auth",
"version": "7.3.0",
"description": "Salesforce authentication for Heroku Node applications.",
"main": "dist/src/index.js",
"types": "dist/types/src/index.d.ts",
"files": [
"dist/src",
"dist/types/src"
],
"scripts": {
"build": "npm run build-clean && npm run build-compile",
"build-clean": "rm -rf dist",
"build-compile": "tsc",
"clean": "rm -rf coverage* && rm -rf dist && rm -rf node_modules && rm -f *.tgz",
"coverage-system": "DEBUG=app* NODE_APP_INSTANCE=system jest --config systemtests/.jest.json --runInBand --detectOpenHandles",
"coverage-unit": "jest --config test/.jest.json",
"doc": "typedoc --gitRevision master --ignoreCompilerErrors --out doc src/**/* --readme readme.md --plugin typedoc-plugin-external-module-name",
"init-project": "cp run.properties local.run.properties && cp test.properties local.test.properties",
"lint-fix": "tslint -p tsconfig.json --fix",
"prepare": "npm run build",
"pretest": "tslint -p tsconfig.json",
"test": "npm run coverage-unit",
"test-system": "DEBUG=app* NODE_APP_INSTANCE=system jest --config systemtests/.jest.json --coverage=false --runInBand --detectOpenHandles",
"test-unit": "jest --config test/.jest.json --coverage=false"
},
"repository": {
"type": "git",
"url": "https://github.com/financialforcedev/orizuru-auth"
},
"keywords": [
"orizuru",
"heroku",
"salesforce",
"authentication"
],
"author": "financialforce",
"license": "BSD-3-Clause",
"dependencies": {
"@types/form-urlencoded": "^2.0.1",
"@types/jsonwebtoken": "^8.3.3",
"@types/node": "^12.7.2",
"@types/node-forge": "^0.8.6",
"@types/uuid": "^3.4.5",
"axios": "^0.19.0",
"form-urlencoded": "^3.0.2",
"jsonwebtoken": "^8.5.1",
"node-forge": "^0.8.5",
"uuid": "^3.3.2"
},
"devDependencies": {
"@financialforcedev/orizuru": "^9.3.2",
"@types/chai": "^4.2.0",
"@types/chai-as-promised": "^7.1.2",
"@types/config": "0.0.34",
"@types/debug": "^4.1.5",
"@types/jest": "^24.0.17",
"@types/pem": "^1.9.5",
"@types/puppeteer": "^1.19.1",
"@types/sinon": "^7.0.13",
"@types/sinon-chai": "^3.2.3",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"config": "^3.2.2",
"debug": "^4.1.1",
"jest": "^24.9.0",
"pem": "^1.14.2",
"puppeteer": "^1.19.0",
"sinon": "^7.4.1",
"sinon-chai": "^3.3.0",
"superagent": "^5.1.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"peerDependencies": {
"@financialforcedev/orizuru": "^9"
}
}