-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.97 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
{
"name": "@interop/gnap-client-js",
"description": "Authentication client for the GNAP authorization protocol for in-browser Javascript and Node.js",
"version": "0.0.1",
"author": {
"name": "Dmitri Zagidulin",
"url": "https://github.com/dmitrizagidulin/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/interop-alliance/gnap-client-js"
},
"homepage": "https://github.com/interop-alliance/gnap-client-js",
"bugs": "https://github.com/interop-alliance/gnap-client-js/issues",
"scripts": {
"test": "npm run standard && npm run test-node",
"test-node": "cross-env NODE_ENV=test mocha -r esm --preserve-symlinks -t 10000 test/**/*.spec.js",
"test-karma": "karma start test/karma.conf.js",
"nyc": "cross-env NODE_ENV=test nyc npm run test-node",
"standard": "standard"
},
"dependencies": {
"axios": "^0.19.0",
"esm": "^3.2.25",
"http-signature-header": "^1.3.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/runtime": "^7.4.3",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"dirty-chai": "^2.0.1",
"karma": "^4.0.1",
"karma-babel-preprocessor": "^8.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"sinon": "^7.5.0",
"standard": "^14.3.1",
"webpack": "^4.41.2"
},
"main": "src/main.js",
"nyc": {
"reporter": [
"html",
"text-summary"
],
"cache": true
},
"standard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it",
"require"
]
},
"engines": {
"node": ">=10.0"
}
}