forked from federicorp/nativescript-dev-multiple-env
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "@nativescript-dev/multiple-environments",
"version": "1.0.0",
"description": "A Hook For Nativescript to allow multiple Environments",
"repository": {
"type": "git",
"url": "git+https://github.com/federicorp/nativescript-dev-multiple-env.git"
},
"nativescript": {
"hooks": [
{
"type": "before-prepare",
"script": "lib/before-prepare.js",
"inject": true
}
]
},
"author": "Federicorp <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"test": "exit 0;",
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js",
"prepare.package": "cd ../publish && ./pack.sh",
"prepare.demo.install": "cd ../demo && tns plugin install ../publish/package/*.tgz",
"prepare.demo": " npm run prepare.package && npm run prepare.demo.install"
},
"devDependencies": {
"@types/node": "^10.7.0",
"@nativescript/hook": "^2.0.0"
},
"bugs": {
"url": "https://github.com/federicorp/nativescript-dev-multiple-env/issues"
},
"homepage": "https://github.com/federicorp/nativescript-dev-multiple-env#readme",
"main": "postinstall.js",
"directories": {
"lib": "lib"
},
"dependencies": {}
}