-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.78 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
{
"name": "bidirectional-adapter",
"description": "bi-directional adapter factory, used to decouple systems across shared data structures",
"version": "1.0.0",
"author": "Tyler Han, Ben Teichman",
"bugs": {
"url": "https://github.com/voiceflow/bidirectional-adapter/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@voiceflow/commitlint-config": "2.0.0",
"@voiceflow/eslint-config": "6.1.0",
"@voiceflow/git-branch-check": "1.4.0",
"@voiceflow/prettier-config": "1.2.1",
"@voiceflow/tsconfig": "1.4.8",
"@zerollup/ts-transform-paths": "^1.7.18",
"chai": "^4.3.6",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"depcheck": "^1.4.3",
"eslint": "^8.23.0",
"eslint-output": "^3.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.1",
"istanbul": "^0.4.5",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"source-map-support": "^0.5.21",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.13",
"typescript": "^4.8.2"
},
"files": [
"build/"
],
"homepage": "https://github.com/voiceflow/bidirectional-adapter#readme",
"keywords": [
"adapter",
"data",
"model",
"voiceflow"
],
"license": "ISC",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"prettier": "@voiceflow/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/voiceflow/bidirectional-adapter.git"
},
"scripts": {
"build": "yarn clean && yarn build:cjs && yarn build:esm",
"build:cjs": "ttsc --build tsconfig.build.json",
"build:esm": "ttsc --build tsconfig.esm.json",
"clean": "rimraf build",
"commit": "cz",
"eslint-output": "eslint-output",
"lint": "eslint '**/*.{js,ts}'",
"lint:output": "yarn run eslint-output --quiet \"**/*.{js,ts}\"",
"lint:quiet": "yarn lint --quiet",
"lint:report": "yarn lint:output",
"prepublishOnly": "yarn build",
"test": "yarn test:run",
"test:dependencies": "depcheck",
"test:integration": "NODE_ENV=test nyc --report-dir nyc_coverage_integration ts-mocha --paths --config ./config/test/.mocharc.yml 'test/**/*.it.ts'",
"test:run": "NODE_ENV=test nyc ts-mocha --paths --config ./config/test/.mocharc.yml 'test/**/*.{unit,it}.ts'",
"test:single": "NODE_ENV=test ts-mocha --paths --config ./config/test/.mocharc.yml",
"test:unit": "NODE_ENV=test nyc --report-dir=nyc_coverage_unit ts-mocha --paths --config ./config/test/.mocharc.yml 'test/**/*.unit.ts'"
},
"types": "build/cjs/index.d.ts"
}