-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.63 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": "@spaceteams/zap",
"version": "0.3.4",
"description": "validation-first schema library with a functional api",
"repository": "github:spaceteams/zap.git",
"license": "BSD-3-Clause",
"author": "maximilian.stribeck@spaceteams.de",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "TZ=UTC jest --watch",
"test:ci": "TZ=UTC jest --coverage",
"build": "npm run clean-lib && npm run compile && npm run bundle",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --quiet",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --quiet --fix",
"format": "prettier --check 'src/**/*.{js,jsx,ts,tsx}'",
"format:fix": "prettier --write 'src/**/*.{js,jsx,ts,tsx}'",
"compile": "tsc",
"bundle": "rollup --config",
"clean-lib": "rm -f -r -d build && rm -f -r -d dist"
},
"dependencies": {
"lodash": "^4.17.21",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.5",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@types/lodash-es": "^4.17.7",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"eslint": "^8.43.0",
"eslint-plugin-unicorn": "^47.0.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"rollup": "^3.25.3",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleNameMapper": {
"^lodash-es$": "lodash"
},
"testMatch": [
"**/*.spec.ts"
]
}
}