-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.56 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
{
"name": "civic-sip-api",
"version": "1.2.1",
"description": "Server-side library for the Civic Secure Identity platform.",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"test": "nyc mocha",
"coverage-report": "nyc report -r html mocha"
},
"nyc": {
"check-coverage": true,
"per-file": true,
"lines": 95.56,
"statements": 95.56,
"functions": 90,
"branches": 75,
"exclude": [
"test/*"
]
},
"homepage": "https://github.com/civicteam/npm-civic-sip-api",
"author": {
"name": "civic",
"email": "support@civic.com",
"url": "https://civic.com/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/civicteam/npm-civic-sip-api"
},
"engines": {
"node": ">= 6.10.x"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.12.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-no-only-tests": "2.0.0",
"lodash": "^4.17.11",
"mocha": "^6.1.4",
"needle": "^2.2.4",
"nock": "^9.2.3",
"nyc": "^14.1.1",
"rewire": "^4.0.1",
"sinon": "^4.4.2"
},
"dependencies": {
"crypto-js": "^4.2.0",
"json-stable-stringify": "^1.0.1",
"jsrsasign": "^10.6.1",
"jsrsasign-util": "^1.0.0",
"lodash.merge": "^4.6.0",
"promise": "^7.1.1",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"sjcl": "civicteam/sjcl.git",
"unix-timestamp": "^0.2.0",
"uuid": "^3.0.1",
"xmlhttprequest": "^1.8.0"
}
}