-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "platform-folders",
"version": "0.6.0",
"description": "Module to get platform dependent folders (e.g. documents, downloads, config)",
"main": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register test/**/*.ts",
"install": "node-gyp rebuild",
"build": "tsc",
"prepublishOnly": "tsc",
"lint": "eslint -c ./.eslintrc.js src/**/*[^.d$].ts ./test/**/*.ts "
},
"keywords": [
"platform",
"folders",
"documents",
"downloads",
"special folders",
"appdata",
"platform folders"
],
"author": "Jan Beckmann <[email protected]>",
"license": "MIT",
"gypfile": true,
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"chai": "^4.3.6",
"eslint": "^8.13.0",
"mocha": "^9.2.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/kingjan1999/platform-folders.git"
},
"dependencies": {
"bindings": "^1.5.0"
},
"files": [
"src",
"binding.gyp",
"README.md",
"LICENSE"
],
"engines": {
"node": "^8.16.0 || >=10"
}
}