forked from atom/node-keytar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 KB
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
61
62
{
"main": "keytar.js",
"typings": "keytar.d.ts",
"name": "@makepro-x/keytar",
"description": "Bindings to native Mac/Linux/Windows password APIs",
"version": "7.10.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/makeproaudio/node-keytar.git"
},
"bugs": {
"url": "https://github.com/makeproaudio/node-keytar/issues"
},
"keywords": [
"keychain",
"password",
"passwords",
"credential",
"credentials",
"vault",
"credential vault"
],
"files": [
"src",
"binding.gyp",
"keytar.d.ts",
"keytar.js",
"prebuilds",
"binding-options.js"
],
"types": "./keytar.d.ts",
"scripts": {
"install": "pkg-prebuilds-verify ./binding-options.js || npm run build",
"build": "node-gyp rebuild",
"rebuild": "node-gyp clean configure build",
"lint": "npm run cpplint",
"cpplint": "node-cpplint --filters legal-copyright,build-include,build-namespaces src/*.cc",
"test": "npm run lint && npm rebuild && mocha --require babel-core/register spec/"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"node-addon-api": "^5.0.0",
"node-cpplint": "~0.4.0",
"node-gyp": "^9.3.1"
},
"dependencies": {
"pkg-prebuilds": "github:Julusian/pkg-prebuilds#c6782d555d035de6c25738d374207959c6719976"
},
"binary": {
"napi_versions": [
3
]
},
"config": {
"runtime": "napi",
"target": 3
}
}