UNPKG

2.87 kBJSONView Raw
1{
2 "name": "@conversationlearner/sdk",
3 "version": "0.318.8",
4 "description": "Node SDK for Conversation Learner",
5 "main": "lib/index.js",
6 "typings": "lib/index.d.ts",
7 "scripts": {
8 "lint": "tslint -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
9 "prebuild": "npm run lint",
10 "build": "tsc",
11 "clean": "rm -rf lib",
12 "prettier": "prettier",
13 "runprettier": "prettier --write --no-semi --single-quote src/**/*.ts",
14 "prepublishOnly": "tsc",
15 "pretest": "tsc",
16 "tsc": "tsc",
17 "test": "jest",
18 "update-docs": "typedoc",
19 "ui": "node ./lib/uiServer.js",
20 "commit": "git-cz"
21 },
22 "config": {
23 "commitizen": {
24 "path": "node_modules/cz-conventional-changelog"
25 }
26 },
27 "release": {
28 "analyzeCommits": {
29 "preset": "angular",
30 "releaseRules": [
31 {
32 "breaking": true,
33 "release": "minor"
34 }
35 ]
36 }
37 },
38 "author": "Microsoft Conversation Learner Team",
39 "license": "MIT",
40 "dependencies": {
41 "@conversationlearner/models": "0.199.3",
42 "@conversationlearner/ui": "0.353.13",
43 "@types/supertest": "2.0.4",
44 "async-file": "^2.0.2",
45 "body-parser": "1.18.3",
46 "botbuilder": "4.1.7",
47 "cors": "2.8.4",
48 "express": "4.16.3",
49 "filenamify": "^2.0.0",
50 "fs-extra": "^5.0.0",
51 "http-proxy-middleware": "0.18.0",
52 "http-status-codes": "^1.3.0",
53 "redis": "^2.7.1",
54 "request": "^2.79.0",
55 "semver": "^5.5.0",
56 "supertest": "3.1.0",
57 "swagger-client": "^2.1.32",
58 "tslib": "^1.5.0",
59 "typedoc": "0.14.2",
60 "url": "0.11.0",
61 "xmldom": "^0.1.27"
62 },
63 "devDependencies": {
64 "@commitlint/cli": "7.0.0",
65 "@commitlint/config-conventional": "7.0.1",
66 "@types/cors": "2.8.4",
67 "@types/express": "4.16.0",
68 "@types/filenamify": "^2.0.1",
69 "@types/fs-extra": "^5.0.0",
70 "@types/http-proxy-middleware": "0.17.4",
71 "@types/jest": "24.0.11",
72 "@types/node": "^8.0.28",
73 "@types/redis": "^2.6.0",
74 "@types/request": "^2.0.3",
75 "@types/semver": "^5.5.0",
76 "@types/xmldom": "^0.1.29",
77 "commitizen": "2.10.1",
78 "http-server": "^0.11.1",
79 "husky": "1.3.1",
80 "jest": "24.5.0",
81 "nodemon": "^1.11.0",
82 "prettier": "^1.10.2",
83 "tslint": "^5.9.1",
84 "tslint-config-prettier": "^1.12.0",
85 "tslint-config-standard": "^7.0.0",
86 "tslint-microsoft-contrib": "^5.0.3",
87 "typescript": "3.3.4000"
88 },
89 "files": [
90 "lib",
91 "src"
92 ],
93 "jest": {
94 "testMatch": [
95 "**/lib/**/?(*.)(spec|test).js?(x)"
96 ],
97 "testEnvironment": "node"
98 },
99 "prettier": {
100 "tabWidth": 4,
101 "printWidth": 140
102 },
103 "commitlint": {
104 "extends": [
105 "@commitlint/config-conventional"
106 ]
107 },
108 "publishConfig": {
109 "tag": "next",
110 "access": "public"
111 },
112 "husky": {
113 "hooks": {
114 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
115 }
116 }
117}