-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 959 Bytes
/
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": "nativescript-app-environment",
"version": "1.0.0",
"description": "Set release info to json",
"nativescript": {
"hooks": [
{
"type": "before-prepare",
"script": "lib/before-prepare.js",
"inject": true
}
]
},
"repository": {
"type": "git",
"url": "git@github.com:m-abs/nativescript-app-environment.git"
},
"scripts": {
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js",
"prepare": "npx rimraf lib && npx tsc"
},
"keywords": [
"nativescript",
"hooks",
"hook",
"build",
"release",
"info"
],
"author": {
"email": "m_abs@mabs.dk",
"url": "https://mabs.dk",
"name": "Morten Sjøgren"
},
"license": "MIT",
"dependencies": {
"nativescript-hook": "^0.2.1"
},
"devDependencies": {
"@types/node": "^10.1.2",
"rimraf": "^2.6.2",
"ts-node": "^6.0.5",
"typescript": "^2.8.3"
}
}