-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "get-appx-path",
"version": "0.2.4",
"description": "Returns the path of a Windows Store application (Appx)",
"license": "MIT",
"scripts": {
"fix": "eslint --fix ./src",
"lint:json": "jsonlint --quiet ./*.json",
"lint:js": "eslint ./src",
"lint": "npm-run-all --parallel lint:*",
"precommit": "npm run test",
"test": "eslint index.js"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/idleberg/node-get-appx-path.git"
},
"keywords": [
"appx",
"windows store",
"windows store app",
"microsoft store",
"universal windows platform"
],
"dependencies": {
"node-powershell": "^4.0.0"
},
"devDependencies": {
"eslint": "^7.18.0",
"eslint-plugin-json": "^2.1.2",
"husky": "^4.3.8",
"jsonlint": "^1.6.3",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.json": "jsonlint --quiet",
"*.js": "eslint --cache --fix"
}
}