forked from EthanSK/get-node-modules-dir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 667 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "get-node-modules-dir",
"version": "1.0.1",
"description": "\"Simply returns the path to the node modules folder. Useful for things like electron where asar unpacked modules are in their own location that needs to be resolved\"",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "tsc"
},
"author": "Ethan Sarif-Kattan",
"license": "ISC",
"dependencies": {
"path": "^0.12.7"
},
"devDependencies": {
"@types/node": "^12.7.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EthanSK/get-node-modules-dir.git"
},
"types": "index.d.ts"
}