-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.77 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
{
"name": "goodeggs-json-schema-validator",
"version": "6.0.6",
"description": "Good Eggs JSON Schema Validator",
"author": "Good Eggs <open-source@goodeggs.com>",
"contributors": [
"Ben Buckman <ben.buckman@goodeggs.com>",
"Danny Nelson <danny@goodeggs.com>"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/goodeggs-json-schema-validator.git"
},
"dependencies": {
"tv4": "^1.3.0"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.22.1",
"@babel/node": "^7.22.1",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@babel/register": "^7.21.0",
"@goodeggs/toolkit": "^7.0.1",
"@goodeggs/tsconfig": "^2.0.2",
"@types/mocha": "^10.0.1",
"@types/tv4": "^1.2.31",
"goodeggs-test-helpers": "^8.3.3",
"mocha": "6.2.3",
"typescript": "^4.9.5"
},
"scripts": {
"build": "yarn run build:clean && babel --extensions=.ts,.js,.jsx,.tsx src -d lib && yarn run build:types",
"build:clean": "rm -rf lib",
"build:types": "tsc --project tsconfig.declarations.json",
"prepublishOnly": "yarn run build",
"lint": "getk run lint-es '**/*.{js,jsx,ts,tsx}' --ignore-path .gitignore",
"lint:fix": "getk run fix-es --ignore-path .gitignore",
"test:mocha": "NODE_ENV=test mocha --opts mocha.opts --extension ts,js,jsx,tsx",
"test": "yarn run typecheck && yarn run lint && yarn run test:mocha",
"typecheck": "tsc"
},
"homepage": "https://github.com/goodeggs/goodeggs-json-schema-validator",
"bugs": "https://github.com/goodeggs/goodeggs-json-schema-validator/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
}
}