-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.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
{
"name": "jovo-v4-community-plugin-spintax-output",
"version": "1.0.3",
"description": "A Jovo V4 framework plugin which adds spintax support for output strings.",
"main": "dist/src/index.js",
"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": "Frank Börncke",
"license": "Apache-2.0",
"homepage": "https://github.com/fboerncke/jovo-v4-community-plugin-spintax-output#readme",
"repository": {
"type": "git",
"url": "https://github.com/fboerncke/jovo-v4-community-plugin-spintax-output"
},
"bugs": {
"url": "https://github.com/fboerncke/jovo-v4-community-plugin-spintax-output/issues"
},
"dependencies": {
"husky": "^4.2.3",
"@jovotech/framework": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.11.0",
"jest": "^25.2.7",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"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/**/*"
]
}