-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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": "webauthn-simple-app",
"version": "2.1.0",
"description": "webauthn-simple-app",
"main": "dist/webauthn-simple-app.cjs.js",
"module": "dist/webauthn-simple-app.esm.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup -c rollup.config.js --environment NODE_ENV:development",
"build:prod": "rollup -c rollup.config.js --environment NODE_ENV:production",
"postinstall": "npm run build:prod",
"test:node": "npm run build:prod && mocha --require test/node/test-setup.js test/common/*.js test/node/*.js",
"test:browser": "grunt default",
"test": "npm run test:node && npm run test:browser",
"prepublishOnly": "npm run clean && npm run test",
"clean": "rm -rf dist docs",
"docs": "jsdoc -c ./.jsdoc-conf.json",
"publish-docs": "gh-pages --repo https://[email protected]/apowers313/webauthn-simple-app.git --dist docs"
},
"keywords": [
"webauthn",
"fido",
"fido2"
],
"repository": {
"type": "git",
"url": "git+https://github.com/apowers313/webauthn-simple-app.git"
},
"author": "Adam Powers",
"contributors": [
{
"name": "@madwizard-thomas"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/apowers313/webauthn-simple-app/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/apowers313/webauthn-simple-app#readme",
"dependencies": {
"rollup": "^0.61.2"
},
"devDependencies": {
"chai": "^3.5.0",
"docdash": "^0.4.0",
"fido2-helpers": "^1.4.0",
"gh-pages": "^0.12.0",
"grunt": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"grunt-saucelabs": "^9.0.0",
"jsdoc": "^3.5.5",
"mocha": "^3.2.0"
}
}