-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.32 KB
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
{
"name": "@krmx/base",
"description": "krmx base",
"author": "Simon Karman",
"version": "0.6.5",
"main": "dist/src/index.js",
"scripts": {
"test": "jest --coverage --silent --verbose",
"validate": "npm run postversion && npm run lint && npm run test && npm run build",
"postversion": "node -p \"'export const VERSION = \\'' + require('./package.json').version + '\\';'\" > src/version.ts",
"build": "rm -rf dist && tsc",
"dev": "npm run build -- --watch",
"lint": "eslint --ext .ts",
"prepublishOnly": "npm install && npm run validate"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/ws": "^8.5.9",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.2",
"ws": "^8.13.0"
},
"license": "ISC",
"homepage": "https://simonkarman.github.io/krmx",
"contributors": [
{
"name": "Simon Karman",
"url": "https://www.simonkarman.nl",
"githubUsername": "simonkarman"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/simonkarman/krmx.git"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}