forked from atom/node-keytar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.75 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
{
"main": "./lib/keytar.js",
"typings": "keytar.d.ts",
"name": "keytar",
"description": "Bindings to native Mac/Linux/Windows password APIs",
"version": "5.4.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atom/node-keytar.git"
},
"bugs": {
"url": "https://github.com/atom/node-keytar/issues"
},
"homepage": "http://atom.github.io/node-keytar",
"keywords": [
"keychain",
"password",
"passwords",
"credential",
"credentials",
"vault",
"credential vault"
],
"files": [
"lib",
"src",
"binding.gyp",
"keytar.d.ts"
],
"types": "./keytar.d.ts",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"lint": "npm run cpplint",
"cpplint": "node-cpplint --filters legal-copyright,build-include,build-namespaces src/*.cc",
"test": "npm run lint && npm build . && mocha --require babel-core/register spec/",
"prebuild-node": "prebuild -t 8.9.0 -t 9.4.0 -t 10.11.0 -t 11.9.0 -t 12.0.0 -t 13.0.0 --strip",
"prebuild-node-ia32": "prebuild -t 8.9.0 -t 9.4.0 -a ia32 --strip",
"prebuild-electron": "prebuild -t 5.0.0 -t 6.0.0 -t 7.0.0 -t 8.0.0 -t 9.0.0-beta.2 -r electron --strip",
"prebuild-electron-ia32": "prebuild -t 5.0.0 -t 6.0.0 -t 7.0.0 -t 8.0.0 -t 9.0.0-beta.2 -r electron -a ia32 --strip",
"upload": "node ./script/upload.js",
"postpublish": "git push --follow-tags"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"chai": "^4.2.0",
"mocha": "^7.0.0",
"node-abi": "^2.14.0",
"node-cpplint": "~0.4.0",
"node-gyp": "^6.0.0",
"prebuild": "^10.0.0"
},
"dependencies": {
"nan": "2.14.0",
"prebuild-install": "5.3.3"
}
}