This repository has been archived by the owner on Aug 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
108 lines (108 loc) · 3.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@voiceflow/runtime-client-js",
"description": "JavaScript runtime SDK for executing Voiceflow projects",
"version": "0.1.0",
"author": "Voiceflow",
"bugs": {
"url": "https://github.com/voiceflow/runtime-client-sdk/issues"
},
"dependencies": {
"@types/lodash": "^4.14.168",
"@voiceflow/general-types": "1.45.0",
"@voiceflow/runtime": "1.28.0",
"@voiceflow/verror": "^1.1.0",
"axios": "^0.21.1",
"bluebird": "^3.7.2",
"lodash": "^4.17.20"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bluebird": "^3.5.33",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/mocha": "^5.2.7",
"@types/sinon": "^7.5.2",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"@voiceflow/commitlint-config": "^1.0.1",
"@voiceflow/eslint-config": "^2.0.6",
"@voiceflow/git-branch-check": "^1.2.0",
"@voiceflow/prettier-config": "^1.0.5",
"@zerollup/ts-transform-paths": "^1.7.9",
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codacy-coverage": "^3.2.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^7.7.0",
"fixpack": "^4.0.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"prettier-eslint-cli": "^5.0.0",
"rimraf": "^3.0.0",
"semantic-release": "^17.3.7",
"sinon": "^7.5.0",
"source-map-support": "^0.5.19",
"ts-mocha": "^6.0.0",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.8",
"typedoc": "^0.20.12",
"typescript": "^3.9"
},
"files": [
"build"
],
"homepage": "https://github.com/voiceflow/runtime-client-sdk#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "git-branch-check"
}
},
"keywords": [
"client",
"runtime",
"typescript",
"voicdeflow"
],
"license": "ISC",
"lint-staged": {
"package.json": [
"fixpack",
"git add"
],
"**/*.{js,jsx}": [
"eslint --fix",
"prettier-eslint --write",
"git add"
]
},
"main": "build/index.js",
"prettier": "@voiceflow/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/runtime-client-js.git"
},
"scripts": {
"build": "npm run clean && ttsc --project ./tsconfig.build.json",
"clean": "rimraf build",
"lint": "eslint \"lib/**/*.{js,ts}\"",
"lint:fix": "yarn lint --fix",
"lint:quiet": "yarn lint --quiet",
"lint:report": "yarn lint --format json -o sonar/report.json",
"prepare": "npm run build",
"test": "yarn test:run",
"test:integration": "NODE_ENV=test nyc --report-dir=nyc_coverage_integration ts-mocha --paths --opts ./config/tests/mocha.opts 'tests/**/*.it.ts'",
"test:run": "NODE_ENV=test nyc ts-mocha --paths --opts ./config/tests/mocha.opts 'tests/**/*.{unit,it}.ts'",
"test:single": "NODE_ENV=test ts-mocha --paths --opts ./config/tests/mocha.opts",
"test:unit": "NODE_ENV=test nyc --report-dir=nyc_coverage_unit ts-mocha --paths --opts ./config/tests/mocha.opts 'tests/**/*.unit.ts'"
},
"types": "build/index.d.ts"
}