-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
60 lines (60 loc) · 1.38 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
{
"name": "u2f-api",
"description": "Promisified U2F API for browsers",
"license": "MIT",
"version": "0.0.0-development",
"author": "Gustaf Räntilä <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/grantila/u2f-api.git"
},
"files": [
"dist",
"bundle.js"
],
"scripts": {
"build:lib": "scripts/build.sh",
"build:rollup": "rimraf bundle.js && rollup dist-bundle/index.bundle.js --file bundle.js --format iife",
"build": "yarn build:lib && yarn build:rollup",
"test": "jest --no-cache",
"buildtest": "npm run build && npm run test",
"cz": "git-cz"
},
"pre-commit": [
"buildtest"
],
"keywords": [
"u2f",
"api",
"client",
"2-factor",
"authentication",
"fido",
"yubikey",
"promise"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/jest": "^26.0.13",
"@types/node": "^14.6.4",
"already": "1.13.1",
"commitizen": "4.2.1",
"cz-conventional-changelog": "3.3.0",
"get-stream": "^6.0.0",
"jest": "^26.4.2",
"jsdom": "16.4.0",
"pre-commit": "1.x",
"rimraf": "3.0.2",
"rollup": "^2.26.10",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "4.0.2",
"u2f": "^0.1.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}