forked from NativeScript/nativescript-dev-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 954 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
{
"name": "nativescript-dev-typescript",
"version": "0.5.1",
"description": "TypeScript support for NativeScript projects. Install using `tns install typescript`.",
"scripts": {
"test": "exit 0",
"postinstall": "node postinstall.js",
"preuninstall": "node preuninstall.js"
},
"bin": {
"ns-upgrade-tsconfig": "./bin/ns-upgrade-tsconfig"
},
"nativescript": {
"hooks": [
{
"type": "before-prepare",
"script": "lib/before-prepare.js",
"inject": true
},
{
"type": "before-watch",
"script": "lib/watch.js",
"inject": true
},
{
"type": "after-watch",
"script": "lib/after-watch.js",
"inject": true
}
]
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-dev-typescript.git"
},
"dependencies": {
"nativescript-hook": "^0.2.0"
}
}