-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.29 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
{
"name": "@kiwiproject/kiwi-js",
"version": "0.12.0",
"description": "KiwiJS is a utility library. It contains a variety of utilities that we have built over time and find useful. Most of these utilities are ports from the Java Kiwi library.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"format": "node node_modules/.bin/prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint": "node node_modules/.bin/eslint --ext .js,.ts .",
"test": "node --experimental-vm-modules node_modules/.bin/jest --coverage --collectCoverageFrom=src/**/*.ts"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/__tests__/__utils__",
"<rootDir>/node_modules/"
],
"coveragePathIgnorePatterns": [
"src/index.ts"
]
},
"dependencies": {
"express": "4.21.2"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@jest/globals": "29.7.0",
"@types/express": "5.0.0",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"babel-jest": "29.7.0",
"eslint": "9.17.0",
"jest": "29.7.0",
"prettier": "3.4.2",
"typescript": "5.7.2"
}
}