-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·63 lines (63 loc) · 1.42 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
59
60
61
62
63
{
"name": "winreg-ffi",
"version": "0.0.5",
"description": "A Node.js module for binding Winreg.h using node-ffi.",
"main": "src/index.js",
"bin": "bin/cli",
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"watch": "gulp watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mh61503891/node-winreg-ffi.git"
},
"os": [
"win32"
],
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"windows",
"win32",
"registry",
"ffi"
],
"author": {
"name": "Masayuki Higashino",
"email": "[email protected]",
"url": "http://msyk.hgsn.info"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mh61503891/node-winreg-ffi/issues"
},
"homepage": "https://github.com/mh61503891/node-winreg-ffi#readme",
"dependencies": {
"coffee-script": "^1.10.0",
"ffi": "^2.0.0",
"jconv": "^0.1.5",
"meow": "^3.6.0",
"ref": "^1.2.0",
"ref-struct": "^1.0.2"
},
"devDependencies": {
"chai": "^3.4.1",
"coffeelint-stylish": "^0.1.2",
"debug": "^2.2.0",
"gulp": "^3.9.0",
"gulp-coffeelint": "^0.5.0",
"gulp-jsonlint": "^1.1.1",
"gulp-load-plugins": "^1.1.0",
"gulp-mocha": "^2.2.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-task-listing": "^1.0.1",
"gulp-watch": "^4.3.5",
"gulp-yaml-validate": "^1.0.2",
"mocha": "^2.3.3",
"mocha-clean": "^1.0.0"
}
}