-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"author": "Bespoken",
"description": "This project is the monorepo for the Bespoken SDK",
"devDependencies": {
"@types/node": "^16.9.2",
"@typesafejs/eslint-config": "^0.2.2",
"ava": "^5.2.0",
"jest": "^29.5.0",
"jest-junit-reporter": "^1.1.0",
"jsdoc": "^4.0.2",
"lerna": "^6.6.1",
"typescript": "^4.4.3",
"yarn": "^1.22.11"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"index.js",
"bin/*.js",
"src/*.js"
],
"homepage": "https://github.com/bespoken/sdk.git",
"license": "ISC",
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/*.js"
],
"testResultsProcessor": "./node_modules/jest-junit-reporter"
},
"name": "bespoken-sdk",
"scripts": {
"codecov": "codecov",
"compile": "lerna exec -- tsc --outDir types",
"declare": "lerna run --scope @bespoken-sdk/nlp -- npm run declare",
"docs": "jsdoc -c .jsdoc.json",
"link": "lerna exec -- npx yarn link",
"postversion": "git push && git push --tags",
"process": "node bin/bbt.js process",
"standard": "standard --fix",
"test": "jest",
"types": "lerna exec --no-bail -- tsc --allowJS --declaration --outDir types --emitDeclarationOnly index.js"
},
"standard": {}
}