-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 1.37 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
{
"name": "@jovotech/model-rasa",
"private": false,
"version": "4.0.3",
"description": "Jovo Model for Rasa",
"main": "dist/src/index",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "gulp && tsc",
"tslint": "tslint -p tsconfig.json -c tslint.json",
"tsc": "tsc",
"tscw": "tsc --watch",
"test": "jest",
"rimraf": "rimraf ./dist"
},
"files": [
"dist"
],
"author": "jovotech",
"license": "Apache-2.0",
"devDependencies": {
"@jovotech/model-util": "^4.0.3",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.5",
"@types/tv4": "^1.2.29",
"gulp": "^4.0.2",
"jest": "^24.9.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@jovotech/model": "^4.0.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"gitHead": "e7a3560860e41654c07b5b07d1c6e11d9b9b6ba4"
}