-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "kuzzle-plugin-commons",
"version": "1.3.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": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@types/node": "22.10.7",
"cz-conventional-changelog": "3.3.0",
"eslint-plugin-kuzzle": "0.0.13",
"semantic-release-config-kuzzle": "1.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"peerDependencies": {
"kuzzle": ">=2.14.0"
},
"files": [
"dist/*"
]
}