-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.64 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
{
"name": "goodeggs-validators",
"version": "3.1.0",
"description": "validators for good eggs",
"author": "Good Eggs <[email protected]>",
"contributors": [
"Bob Zoller <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/goodeggs-validators.git"
},
"homepage": "https://github.com/goodeggs/goodeggs-validators",
"bugs": "https://github.com/goodeggs/goodeggs-validators/issues",
"main": "lib/index.js",
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.25.9",
"@goodeggs/toolkit": "^7.0.1",
"@goodeggs/tsconfig": "^2.0.2",
"@types/jest": "^29.5.14",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"typescript": "^4.9.5"
},
"scripts": {
"build": "yarn run build:clean && yarn run build:es && yarn run build:types",
"build:clean": "rm -rf lib",
"build:es": "babel src --out-dir lib --copy-files --extensions=.ts,.js,.jsx,.tsx",
"build:types": "tsc --project tsconfig.declarations.json",
"lint": "yarn run lint:es",
"lint:es": "getk run lint-es",
"lint:fix": "yarn run lint:fix:es",
"lint:fix:es": "getk run fix-es",
"prepublishOnly": "yarn run build",
"test": "yarn run lint && yarn run typecheck && yarn run test:unit",
"test:unit": "jest",
"typecheck": "tsc"
},
"publishConfig": {
"registry": "https://npm.goodeggs.com/",
"always-auth": true
}
}