-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "sourceid-2-coordinates",
"version": "1.0.1",
"description": "A sourceId2Coordinates native module",
"author": {
"name": "Daniel McAssey",
"email": "[email protected]"
},
"keywords": [
"jitsi",
"sourceid-2-coordinates"
],
"repository": {
"type": "git",
"url": "https://github.com/DanielMcAssey/sourceid-2-coordinates.git"
},
"bugs": {
"url": "https://github.com/DanielMcAssey/sourceid-2-coordinates/issues"
},
"homepage": "https://github.com/DanielMcAssey/sourceid-2-coordinates",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"gypfile": true,
"scripts": {
"build": "npm run build-native && npm run tsc",
"tsc": "tsc",
"build-native": "node-gyp rebuild",
"install": "prebuild-install || node-gyp rebuild rebuild",
"install-debug": "prebuild-install || node-gyp rebuild --debug",
"prebuild": "prebuild --all"
},
"dependencies": {
"nan": "^2.14.0",
"prebuild-install": "^5.3.3"
},
"devDependencies": {
"@types/node": "12.11.1",
"typescript": "^3.7.4",
"prebuild": "^9.1.1"
}
}