This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
57 lines (57 loc) · 1.64 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": "squeegpg",
"version": "0.0.1",
"description": "Use a bundled GPG from Node.js",
"main": "build/index.js",
"dependencies": {
"@types/fs-extra": "^5.0.1",
"fs-extra": "^6.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/chai-as-promised": "^7.1.0",
"@types/decompress": "^4.2.0",
"@types/mocha": "^5.0.0",
"@types/node": "^10.0.3",
"@types/progress": "^2.0.1",
"@types/request": "^2.47.0",
"@types/tar": "^4.0.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"decompress": "^4.2.0",
"mocha": "^6.0.2",
"mocha-appveyor-reporter": "^0.4.0",
"mocha-junit-reporter": "^1.17.0",
"progress": "^2.0.0",
"request": "^2.85.0",
"tar": "^4.4.0",
"ts-node": "^6.0.0",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
},
"scripts": {
"build": "tsc",
"lint": "tslint --config tslint.json --project tsconfig.json",
"watch": "tsc --watch",
"ci:travis": "npm run test",
"ci:circle:test": "npm run test -- --reporter mocha-junit-reporter",
"ci:circle:lint": "npm run lint",
"ci:appveyor": "npm run test -- --reporter mocha-appveyor-reporter",
"prepare": "npm run build",
"postinstall": "ts-node --project tsconfig.json script/download-gpg.ts",
"test": "mocha --require ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atom/squeegpg.git"
},
"keywords": [
"gpg"
],
"author": "Ash Wilson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atom/squeegpg/issues"
},
"homepage": "https://github.com/atom/squeegpg#readme"
}