@voiceflow/exception 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/package.json +45 -0
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@voiceflow/exception",
|
|
3
|
+
"description": "Voiceflow standard exceptions and error codes",
|
|
4
|
+
"version": "1.1.0",
|
|
5
|
+
"author": "Voiceflow",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/voiceflow/libs/issues"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"build"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://github.com/voiceflow/libs#readme",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"voiceflow"
|
|
15
|
+
],
|
|
16
|
+
"license": "ISC",
|
|
17
|
+
"main": "build/cjs/main.js",
|
|
18
|
+
"module": "build/esm/main.js",
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public",
|
|
21
|
+
"types": "build/cjs/main.d.ts"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/voiceflow/libs.git"
|
|
26
|
+
},
|
|
27
|
+
"scripts": {
|
|
28
|
+
"build": "yarn clean && yarn build:cjs && yarn build:esm",
|
|
29
|
+
"build:cjs": "ttsc --build tsconfig.build.json",
|
|
30
|
+
"build:esm": "ttsc --build tsconfig.esm.json",
|
|
31
|
+
"clean": "rimraf build",
|
|
32
|
+
"commit": "cz",
|
|
33
|
+
"lint": "eslint '**/*.{js,ts}'",
|
|
34
|
+
"lint:fix": "yarn lint --fix",
|
|
35
|
+
"lint:quiet": "yarn lint --quiet",
|
|
36
|
+
"lint:report": "eslint-output --quiet '**/*.{js,ts}'",
|
|
37
|
+
"tdd": "yarn test --watch",
|
|
38
|
+
"test": "exit 0",
|
|
39
|
+
"test:dependencies": "depcheck",
|
|
40
|
+
"test:integration": "exit 0",
|
|
41
|
+
"test:unit": "exit 0"
|
|
42
|
+
},
|
|
43
|
+
"types": "build/cjs/main.d.ts",
|
|
44
|
+
"gitHead": "ac73a436f9865cdc7feddeaef9ecfa6e802a0b77"
|
|
45
|
+
}
|