-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.81 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
{
"name": "@chatie/api",
"version": "0.2.5",
"description": "Chatie.io API",
"main": "index.js",
"scripts": {
"clean": "shx rm -fr dist/* generated/*",
"dist": "npm run clean && npm run generate && tsc && shx mv generated/ dist/",
"edit": "docker run -ti --rm --volume=\"$(pwd)\":/swagger -p 8080:8080 zixia/swagger-edit spec/swagger.yaml",
"example:server": "nodemon --exec ts-node examples/server.ts",
"example:client": "ts-node examples/client.ts",
"generate": "bash -O globstar -x scripts/generate-stub.sh",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:oas",
"lint:es": "eslint --ignore-pattern fixtures/ \"src/**/*.ts\" \"tests/**/*.ts\" \"examples/**/*.ts\"",
"lint:ts": "tsc --noEmit",
"lint:oas": "echo To be added ... OAS linter",
"test": "npm run lint && npm run test:unit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "blue-tape -r ts-node/register \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\"",
"pack": "npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chatie/api.git"
},
"keywords": [
"chatbot",
"framework",
"openapi"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Chatie/api/issues"
},
"homepage": "https://github.com/Chatie/api#readme",
"devDependencies": {
"@chatie/eslint-config": "^0.12.1",
"@chatie/git-scripts": "^0.6.1",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^0.10.1",
"generator-swaggerize": "^4.1.0",
"oas-linter": "^3.1.2",
"pkg-jq": "^0.2.4",
"swagger-editor-server": "^1.0.0",
"tstest": "^0.4.10"
},
"dependencies": {},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
},
"publishConfig": {
"tag": "next"
}
}