-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "kuzzle-plugin-commons",
"version": "1.2.0",
"description": "Common classes for developping Kuzzle plugins",
"author": "The Kuzzle Team <[email protected]>",
"license": "Apache 2",
"repository": {
"type": "git",
"url": "https://github.com/kuzzleio/kuzzle-plugin-commons"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build tsconfig.json",
"package:create": "npm run build && npm pack",
"test:lint": "eslint ./lib --ext .ts --config .eslintrc.json",
"test:lint:fix": "npm run test:lint -- --fix",
"test:types": "tsc --noEmit"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^11.0.1",
"@types/node": "^18.15.11",
"cz-conventional-changelog": "^3.3.0",
"eslint-plugin-kuzzle": "^0.0.6",
"semantic-release-config-kuzzle": "^1.0.0",
"semantic-release-slack-bot": "^4.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"peerDependencies": {
"kuzzle": "^2.14.0"
},
"files": [
"dist/*"
]
}