forked from jovo-community/jovo-community-plugin-timezone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.66 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
{
"name": "jovo-community-plugin-timezone",
"version": "1.2.0",
"description": "A Jovo Framework plugin for cross-platform timezone including defaults per country code.",
"main": "dist/src/index",
"types": "dist/src/index.d.ts",
"scripts": {
"tslint": "tslint -p tsconfig.json -c tslint.json",
"tsc": "tsc",
"rimraf": "rimraf ./dist",
"typedoc": "typedoc --out ./docs ./ --mode file",
"test": "jest"
},
"author": "Jovo Community",
"license": "MIT",
"homepage": "https://github.com/jovo-community/jovo-community-plugin-timezone#readme",
"repository": {
"type": "git",
"url": "https://github.com/jovo-community/jovo-community-plugin-timezone"
},
"bugs": {
"url": "https://github.com/jovo-community/jovo-community-plugin-timezone/issues"
},
"dependencies": {
"husky": "^4.2.3",
"jovo-core": "^3.0.11",
"jovo-platform-alexa": "^3.0.21",
"jovo-platform-bixby": "^3.0.19",
"jovo-platform-googleassistantconv": "^3.6.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"jest": "^25.2.7",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.16",
"ts-jest": "^25.3.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run tslint"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"files": [
"dist/src/**/*"
]
}