-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 908 Bytes
/
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
{
"name": "winreg-ts",
"version": "1.0.4",
"types": "lib/registry.d.ts",
"main": "lib/registry.js",
"description": "provides access to the windows registry through the REG tool",
"keywords": [
"windows",
"registry",
"typescript",
"utf8"
],
"author": {
"name": "Emmanuel Kimmerlin"
},
"homepage": "https://github.com/emmkimme/winreg-ts",
"bugs": {
"url": "https://github.com/emmkimme/winreg-ts/issues"
},
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "[email protected]:emmkimme/winreg-ts.git"
},
"devDependencies": {
"del": "^5.1.0",
"del-cli": "^3.0.1",
"mocha": "^8.1.1",
"typescript": "^3.9.7",
"unit.js": "^2.1.1"
},
"scripts": {
"clean": "del-cli ./lib ./build ./dist",
"build": "tsc",
"test": "mocha test/src",
"deploy": "npm publish ./ --registry https://registry.npmjs.org"
}
}