forked from nativescript-community/ui-lottie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.55 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@nativescript-community/ui-lottie",
"version": "4.0.1",
"description": "NativeScript plugin to expose AirBnB Lottie library",
"main": "nativescript-lottie",
"typings": "index.d.ts",
"nativescript": {
"platforms": {
"android": "6.0.0",
"ios": "6.0.1"
}
},
"repository": {
"type": "git",
"url": "https://github.com/farfromrefug/nativescript-lottie.git"
},
"keywords": [
"NativeScript",
"nativescript-lottie",
"Lottie",
"Android",
"Animation",
"iOS",
"TypeScript",
"bradmartin"
],
"author": {
"name": "Brad Martin",
"email": "[email protected]"
},
"contributors": [
{
"name": "Nathan Walker",
"email": "[email protected]"
},
{
"name": "JB",
"url": "https://github.com/rhanb"
},
{
"name": "Dirk Rudolph",
"url": "https://github.com/Buuhuu"
},
{
"name": "Hamdi Wanis",
"url": "https://github.com/hamdiwanis"
},
{
"name": "itstheceo",
"url": "https://github.com/itstheceo"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/farfromrefug/nativescript-lottie/issues"
},
"homepage": "https://github.com/farfromrefug/nativescript-lottie",
"readmeFilename": "README.md",
"scripts": {
"setup": "ts-patch install",
"prepare": "npm run setup",
"tsc": "cpy '**/*.d.ts' '../plugin' --parents --cwd=src && tsc -skipLibCheck -d",
"clean": "rimraf ./plugin/**/*.d.ts ./plugin/**/*.js ./plugin/**/*.js.map plugin/node_modules plugin/package-lock.json",
"build.plugin": "cp README.md plugin/ && rm -f .tsbuildinfo && npm run tsc",
"build.android": "bash src-native/android/build.sh",
"build.ios": "bash src-native/ios/build.sh",
"build.native": "npm run build.android && npm run build.ios",
"build": "npm run build.plugin",
"publish": "npm run setup && npm run build && lerna publish --create-release=github --force-publish",
"demo.ios": "npm i && npm run tsc && cd demo && tns run ios",
"demo.android": "npm i && npm run tsc && cd demo && tns run android",
"clean.demo": "rimraf demo/hooks demo/node_modules demo/platforms",
"plugin.watch.tsc": "npm run tsc -- -w",
"plugin.watch.android": "npm i && npm-watch build.android",
"plugin.watch.ios": "npm i && npm-watch build.ios",
"plugin.watch": "npm run plugin.watch.tsc & npm run plugin.watch.android & npm run plugin.watch.ios",
"commitmsg": "commitlint -e $GIT_PARAMS",
"generate.typings.ios": "cd ../demo && TNS_DEBUG_METADATA_PATH=\"$(pwd)/metadata\" tns build ios && TNS_TYPESCRIPT_DECLARATIONS_PATH=\"$(pwd)/typings\" tns build ios && echo 'Now look for your library typings in demo/typings!'",
"precommit": "lint-staged"
},
"devDependencies": {
"@angular/core": "^13.1.3",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@nativescript/angular": "^13.0.1",
"@nativescript/core": "8.1.5",
"@nativescript/types-android": "8.1.0",
"@nativescript/types-ios": "8.1.1",
"@nativescript/webpack": "~5.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"cpy-cli": "3.1.1",
"eslint": "8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"npm-watch": "^0.11.0",
"prettier": "^2.4.1",
"prompt": "^1.2.0",
"rimraf": "^3.0.2",
"ts-patch": "1.4.5",
"typescript": "~4.4.4"
},
"dependencies": {
"ts-node": "^10.4.0"
}
}