-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.38 KB
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
{
"name": "@nativescript-community/texttospeech",
"version": "1.0.0",
"scripts": {
"setup": "ts-patch install",
"prepare": "npm run setup",
"clean": "rimraf ./plugin/**/*.d.ts ./plugin/**/*.js ./plugin/**/*.js.map plugin/node_modules plugin/package-lock.json plugin/README.md demo/node_modules demo-angular/node_modules",
"tsc": "cpy '**/*.d.ts' '../plugin' --parents --cwd=src && tsc -skipLibCheck -d",
"build": "cp README.md ./plugin && rm -f .tsbuildinfo && npm run tsc ",
"publish": "npm run setup && npm run build && lerna publish --create-release=github --force-publish",
"doc": "typedoc --out docs --tsconfig tsconfig.doc.json --includeDeclarations --excludeExternals --mode file --ignoreCompilerErrors --excludeNotExported --excludePrivate --theme minimal",
"commitmsg": "commitlint -e $GIT_PARAMS"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@nativescript-community/texttospeech": "file:plugin",
"@nativescript/core": "8.3.5",
"@nativescript/ios": "8.3.3",
"@nativescript/types-android": "~8.3.1",
"@nativescript/types-ios": "~8.3.1",
"@nativescript/webpack": "5.0.9",
"@types/node": "18.8.4",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"cpy-cli": "^3.1.1",
"eslint": "8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lerna": "^5.6.2",
"prettier": "^2.7.1",
"prompt": "^1.3.0",
"rimraf": "^3.0.2",
"rxjs": "^7.5.7",
"ts-patch": "^2.0.2",
"typedoc": "^0.23.16",
"tslib": "2.4.0",
"typescript": "4.7.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nativescript-community/texttospeech.git"
},
"author": "Anarchic Knight <anarchicknight@gmail.com> (http://www.anarchicknight.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nativescript-community/texttospeech/issues"
},
"homepage": "https://github.com/nativescript-community/texttospeech#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"ts-node": "^8.10.2"
}
}