1
1
{
2
- "name" : " nativescript-urlhandler" ,
3
- "version" : " 0.2.0" ,
4
- "description" : " Register custom URLs for your NativeScript app" ,
5
- "scripts" : {
6
- "preclean" : " npm i rimraf" ,
7
- "clean" : " rimraf node_modules lib hooks platforms target '*.js' '*.js.map' 'app/**/*.js' 'app/**/*.js.map' && npm i" ,
8
- "postclean" : " npm i" ,
9
- "prebuild" : " npm run tslint" ,
10
- "build" : " npm run tsc" ,
11
- "tsc" : " tsc" ,
12
- "tslint" : " tslint \" *.ts\" " ,
13
- "test" : " npm run tslint && npm run jasmine" ,
14
- "jasmine" : " babel-node spec/run.js" ,
15
- "changelog" : " conventional-changelog -p angular -i CHANGELOG.md -s -r 0" ,
16
- "changelog:add" : " git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'" ,
17
- "release:pre" : " npm run clean && npm run build && npm run test" ,
18
- "release:post" : " npm run changelog && npm run changelog:add" ,
19
- "release:major" : " npm run release:pre && npm version major && npm run release:post && git push origin && git push origin --tags && npm publish" ,
20
- "release:minor" : " npm run release:pre && npm version minor && npm run release:post && git push origin && git push origin --tags && npm publish" ,
21
- "release:patch" : " npm run release:pre && npm version patch && npm run release:post && git push origin && git push origin --tags && npm publish"
22
- },
23
- "main" : " urlhandler" ,
24
- "typings" : " urlhandler.d.ts" ,
25
- "nativescript" : {
26
- "platforms" : {
27
- "android" : " 2.3.0" ,
28
- "ios" : " 2.3.0"
29
- }
30
- },
31
- "dependencies" : {},
32
- "peerDependencies" : {
33
- "tns-core-modules" : " ^2.3.1"
34
- },
35
- "devDependencies" : {
36
- "@types/jasmine" : " 2.5.46" ,
37
- "babel-cli" : " 6.24.0" ,
38
- "babel-core" : " 6.24.0" ,
39
- "babel-preset-es2015" : " 6.24.0" ,
40
- "babel-traverse" : " 6.18.0" ,
41
- "babel-types" : " 6.18.0" ,
42
- "conventional-changelog-cli" : " 1.3.1" ,
43
- "jasmine" : " 2.5.3" ,
44
- "jasmine-core" : " 2.5.2" ,
45
- "jasmine-reporters" : " 2.2.1" ,
46
- "mockery" : " 2.0.0" ,
47
- "nativescript-dev-typescript" : " 0.3.7" ,
48
- "rimraf" : " 2.6.1" ,
49
- "tns-core-modules" : " 2.5.1" ,
50
- "tns-platform-declarations" : " 2.5.0" ,
51
- "tslint" : " 4.5.1" ,
52
- "tslint-eslint-rules" : " 3.5.0" ,
53
- "typescript" : " 2.2.1"
54
- },
55
- "repository" : {
56
- "type" : " git" ,
57
- "url" : " git+https://github.com/hypery2k/nativescript-urlhandler.git"
58
- },
59
- "keywords" : [
60
- " NativeScript" ,
61
- " URL-Handler"
62
- ],
63
- "author" : " Martin Reinhardt" ,
64
- "license" : " MIT" ,
65
- "bugs" : {
66
- "url" : " https://github.com/hypery2k/nativescript-urlhandler/issues"
67
- },
68
- "homepage" : " https://github.com/hypery2k/nativescript-urlhandler"
69
- }
2
+ "name" : " nativescript-urlhandler" ,
3
+ "version" : " 0.2.0" ,
4
+ "description" : " Register custom URLs for your NativeScript app" ,
5
+ "scripts" : {
6
+ "preclean" : " npm i rimraf" ,
7
+ "clean" : " rimraf node_modules hooks platforms target '*.js' '*.js.map' 'sampleApp/**/*.js' 'sampleApp/**/*.js.map' sampleApp/platforms sampleApp/node_modules sampleApp/hooks" ,
8
+ "postclean" : " npm i && cd sampleApp && npm i" ,
9
+ "prebuild" : " npm run tslint" ,
10
+ "build" : " npm run tsc" ,
11
+ "tsc" : " tsc" ,
12
+ "tslint" : " tslint \" *.ts\" " ,
13
+ "test" : " npm run tslint && npm run jasmine" ,
14
+ "e2e" : " npm run preparedemo && cd sampleApp && tns build ios && tns build android" ,
15
+ "jasmine" : " babel-node spec/run.js" ,
16
+ "demo.ios" : " npm run preparedemo && cd sampleApp && tns run ios --emulator" ,
17
+ "demo.android" : " npm run preparedemo && cd sampleApp && tns run android --emulator" ,
18
+ "preparedemo" : " npm run build && cd sampleApp && tns plugin remove nativescript-urlhandler && tns plugin add .. && tns install" ,
19
+ "changelog" : " conventional-changelog -p angular -i CHANGELOG.md -s -r 0" ,
20
+ "changelog:add" : " git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'" ,
21
+ "release:pre" : " npm run clean && npm run build && npm run test" ,
22
+ "release:post" : " npm run changelog && npm run changelog:add" ,
23
+ "release:major" : " npm run release:pre && npm version major && npm run release:post && git push origin && git push origin --tags && npm publish" ,
24
+ "release:minor" : " npm run release:pre && npm version minor && npm run release:post && git push origin && git push origin --tags && npm publish" ,
25
+ "release:patch" : " npm run release:pre && npm version patch && npm run release:post && git push origin && git push origin --tags && npm publish"
26
+ },
27
+ "main" : " urlhandler" ,
28
+ "typings" : " urlhandler.d.ts" ,
29
+ "nativescript" : {
30
+ "platforms" : {
31
+ "android" : " 2.3.0" ,
32
+ "ios" : " 2.3.0"
33
+ }
34
+ },
35
+ "dependencies" : {},
36
+ "peerDependencies" : {
37
+ "tns-core-modules" : " ^2.3.1"
38
+ },
39
+ "devDependencies" : {
40
+ "@types/jasmine" : " 2.5.46" ,
41
+ "babel-cli" : " 6.24.0" ,
42
+ "babel-core" : " 6.24.0" ,
43
+ "babel-preset-es2015" : " 6.24.0" ,
44
+ "babel-traverse" : " 6.18.0" ,
45
+ "babel-types" : " 6.18.0" ,
46
+ "conventional-changelog-cli" : " 1.3.1" ,
47
+ "jasmine" : " 2.5.3" ,
48
+ "jasmine-core" : " 2.5.2" ,
49
+ "jasmine-reporters" : " 2.2.1" ,
50
+ "mockery" : " 2.0.0" ,
51
+ "nativescript-dev-typescript" : " 0.3.7" ,
52
+ "rimraf" : " 2.6.1" ,
53
+ "tns-core-modules" : " 2.5.1" ,
54
+ "tns-platform-declarations" : " 2.5.0" ,
55
+ "tslint" : " 4.5.1" ,
56
+ "tslint-eslint-rules" : " 3.5.0" ,
57
+ "typescript" : " 2.2.1"
58
+ },
59
+ "repository" : {
60
+ "type" : " git" ,
61
+ "url" : " git+https://github.com/hypery2k/nativescript-urlhandler.git"
62
+ },
63
+ "keywords" : [
64
+ " NativeScript" ,
65
+ " URL-Handler"
66
+ ],
67
+ "author" : " Martin Reinhardt" ,
68
+ "license" : " MIT" ,
69
+ "bugs" : {
70
+ "url" : " https://github.com/hypery2k/nativescript-urlhandler/issues"
71
+ },
72
+ "homepage" : " https://github.com/hypery2k/nativescript-urlhandler"
73
+ }
0 commit comments