vscode-windows-registry/package.json

32 строки
831 B
JSON
Исходник Обычный вид История

2019-02-20 19:21:51 +03:00
{
2022-01-08 00:38:02 +03:00
"name": "@vscode/windows-registry",
2023-04-04 19:57:17 +03:00
"version": "1.0.9",
2019-02-20 19:21:51 +03:00
"description": "A native node module for accessing the windows registry",
2019-07-10 09:48:32 +03:00
"os": [
"win32"
],
2019-02-20 19:21:51 +03:00
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
2021-10-26 15:12:24 +03:00
"compile": "tsc -p ./",
2019-02-20 19:21:51 +03:00
"test": "mocha -r ts-node/register test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/vscode-windows-registry.git"
},
"author": "Microsoft Corporation",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/vscode-windows-registry/issues"
},
"homepage": "https://github.com/Microsoft/vscode-windows-registry#readme",
"devDependencies": {
2022-01-08 00:33:23 +03:00
"@types/mocha": "^9.0.0",
2021-10-26 15:12:24 +03:00
"@types/node": "^14",
2022-01-08 00:33:23 +03:00
"mocha": "^9.1.3",
2021-10-26 15:12:24 +03:00
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
2019-02-20 19:21:51 +03:00
}
}