forked from CatalystCode/windows-registry-node
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 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
{
"name": "windows-registry",
"version": "0.1.3",
"description": "Read and Write to the Windows registry in-process from Node.js. Easily set application file associations and other goodies & such.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"debug": "^2.2.0",
"ffi": "^2.0.0",
"ref": "^1.2.0",
"ref-struct": "^1.0.2",
"ref-union": "^1.0.0"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.11.3",
"grunt-contrib-watch": "^0.6.1",
"grunt-jsbeautifier": "^0.2.10",
"grunt-jscs": "^2.1.0",
"grunt-mocha-cli": "^2.0.0",
"load-grunt-tasks": "^3.3.0",
"mockery": "^1.4.0"
},
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CatalystCode/windows-registry-node.git"
},
"keywords": [
"Windows",
"Registry",
"regedit",
"file",
"uac",
"association"
],
"author": {
"name": "Steven Edouard",
"email": "sedouard@microsoft.com",
"url": "http://stevenedouard.com"
},
"contributors": [
{
"name": "Rita Zhang",
"email": "ritazh@microsoft.com",
"url": "https://ritazh.com"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/CatalystCode/windows-registry-node/issues"
},
"homepage": "https://github.com/CatalystCode/windows-registry-node#readme"
}