-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "github-api-signature",
"version": "2.0.1",
"description": "Node.js signature generator for GitHub API using a PGP key",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/github-api-signature.git"
},
"bugs": {
"url": "https://github.com/GitbookIO/github-api-signature/issues"
},
"author": "jpreynat <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"openpgp": "5.0.0-3",
"pad": "3.2.0"
},
"devDependencies": {
"ava": "3.13.0",
"ts-node": "^8.1.0",
"tslint": "^5.16.0",
"tslint-config-gitbook": "^1.0.1",
"typescript": "^3.4.3"
},
"scripts": {
"build": "rm -rf lib/ && tsc --build tsconfig.json",
"prepublishOnly": "yarn run test && yarn run build",
"test": "yarn run test:ava && yarn run test:lint && yarn run test:types",
"test:lint": "tslint src/**/*.ts",
"test:types": "tsc",
"test:ava": "ava --verbose"
},
"ava": {
"files": [
"src/**/tests/*"
],
"extensions": [
"ts"
],
"failFast": true,
"require": [
"ts-node/register"
]
},
"keywords": [
"node",
"github",
"api",
"pgp",
"gpg"
]
}