forked from namaggarwal/webauth-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "webauth-helpers",
"version": "0.1.0",
"description": "Web Authenticaltion API helper library",
"scripts": {
"build": "webpack --config webpack.prod.config.js",
"start": "webpack-dev-server --open --config webpack.dev.config.js",
"test": "mocha -r ts-node/register src/**/*.test.ts",
"test-with-coverage": "nyc -e .ts -x 'src/**/*.test.ts' mocha -r ts-node/register src/**/*.test.ts --reporter mocha-junit-reporter --reporter-options mochaFile=coverage/mocha/test-results.xml"
},
"author": "Naman Aggarwal <[email protected]>",
"license": "MIT",
"main": "./lib/webauth-helpers.min.js",
"types": "./lib/webauth-helpers.d.ts",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/sinon": "^7.0.9",
"chai": "^4.2.0",
"clean-webpack-plugin": "^2.0.0",
"mocha": "^6.0.2",
"mocha-junit-reporter": "^1.18.0",
"nyc": "^13.3.0",
"sinon": "^7.2.7",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"lib",
"src"
],
"keywords": [
"web authentication",
"authentication",
"helpers",
"webauthn",
"webauth",
"base64",
"encoding",
"decoding"
],
"homepage": "https://github.com/namaggarwal/webauth-helpers",
"repository": {
"type": "git",
"url": "https://github.com/namaggarwal/webauth-helpers.git"
}
}