-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 KB
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
55
56
57
{
"name": "node-mac-request-review",
"version": "1.0.11",
"description": "A Native module to request review on App Store using Store Kit",
"main": "index.js",
"types": "index.d.ts",
"gypfile": true,
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi --arch x64+arm64",
"lint": "clang-format --dry-run -Werror ./src/request_review.mm && prettier --check index.js",
"format": "clang-format -i ./src/request_review.mm && prettier --write index.js",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/enfp-dev-studio/node-mac-request-review"
},
"author": "enfp-dev-studio",
"license": "MIT",
"devDependencies": {
"chai": "^4.3.7",
"clang-format": "^1.8.0",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"prebuildify": "^5.0.1",
"prettier": "^2.8.1"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^5.0.0",
"node-gyp-build": "^4.5.0"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.mm": [
"clang-format -i"
]
},
"os": [
"darwin"
],
"keywords": [
"electron",
"mas",
"appstore",
"macos",
"node",
"native",
"napi"
],
"publishConfig": {
"@enfp-dev-studio:registry": "https://npm.pkg.github.com"
}
}