-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.73 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
{
"name": "ck-dialog-language",
"version": "0.2.0",
"description": "SOVA dialog module",
"homepage": "https://sova.ai",
"authors": [
{
"name": "sova.ai",
"gitHub": "https://github.com/sovaai"
}
],
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"engines": {
"node": ">=10",
"npm": ">=5"
},
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"commit-all": "git add . && git-cz",
"changelog": "./node_modules/.bin/conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"keywords": [
"SOVA",
"chat-kit-module"
],
"license": "Apache-2.0",
"peerDependencies": {},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-replace": "^2.3.3",
"@types/node": "^13.9.2",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"@wessberg/rollup-plugin-ts": "^1.2.23",
"commitizen": "^4.0.3",
"conventional-changelog-cli": "^2.0.31",
"cz-conventional-changelog": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^3.1.2",
"immutable": "^4.0.0-rc.12",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"rollup": "^2.1.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "[email protected]:sovaai/chatKit-dl-module.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {}
}