forked from bhovhannes/additween
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.78 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
{
"homepage": "https://github.com/nativescript-community/additween#readme",
"bugs": {
"url": "https://github.com/nativescript-community/additween/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nativescript-community/additween.git"
},
"license": "MIT",
"keywords": [
"nativescript",
"additive",
"tweening",
"animation",
"state",
"easing"
],
"author": "Hovhannes Babayan <bhovhannes@gmail.com>",
"scripts": {
"build": "lerna run build",
"build.all": "lerna run build.all",
"clean": "rimraf 'packages/**/*.d.ts' 'packages/**/*.js' 'packages/**/*.js.map' 'packages/**/*.metada' 'packages/**/angular/ng-package.json'",
"commitmsg": "commitlint -e $GIT_PARAMS",
"postinstall": "npm run setup",
"publish": "npm run setup && npm run clean && npm run build.all && npm run readme && npm run doc && npm run commit_readme_doc_changes && lerna publish",
"readme": "lerna run readme && node ./tools/readme.js",
"setup": "npm run submodules && ts-patch install",
"start": "./node_modules/.bin/ntl -A -s 15 -o",
"submodules": "git submodule update --init",
"sync": "node ./tools/sync.js",
"sync.test": "node ./tools/sync.js",
"tsc": "cpy '**/*.d.ts' '../plugin' --parents --cwd=src && tsc -skipLibCheck -d",
"update": "node ./tools/update.js",
"fullclean": "npm run clean && rimraf 'packages/**/node_modules' 'demo-*/hooks' 'demo-*/node_modules' 'package-lock.json' 'pnpm-lock.yaml' 'node_modules'",
"doc": "node tools/builddoc.mjs",
"commit_readme_doc_changes": "git add docs/** *.md ; git commit -m \"readme/doc\" ; echo \"commit readme doc done\""
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@nativescript-community/plugin-seed-tools": "file:tools"
},
"ntl": {
"descriptions": {
"build": "Build the plugin",
"build.angular": "Build the plugin for Angular",
"build.all": "Build the plugin for all platforms",
"clean": "Clean the local environment.",
"demo.ng.android": "Runs the Angular demo on Android.",
"demo.ng.ios": "Runs the Angular demo on iOS.",
"demo.react.android": "Runs the React demo on Android.",
"demo.react.ios": "Runs the React demo on iOS.",
"demo.svelte.android": "Runs the Svelte demo on Android.",
"demo.svelte.ios": "Runs the Svelte demo on iOS.",
"demo.vue.android": "Runs the Vue demo on Android.",
"demo.vue.ios": "Runs the Vue demo on iOS.",
"watch": "Watch for changes in the plugin source and re-build."
}
},
"workspaces": [
"packages/*",
"demo*"
],
"engines": {
"npm": "please use yarn or pnpm",
"yarn": ">=1.19.1",
"pnpm": ">=7.0.0",
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
}
}