Skip to content
This repository has been archived by the owner on Feb 15, 2022. It is now read-only.

Commit

Permalink
Added presentation 3 validator
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenwf committed May 7, 2021
1 parent 468dbbf commit f3d6f02
Show file tree
Hide file tree
Showing 7 changed files with 886 additions and 0 deletions.
29 changes: 29 additions & 0 deletions packages/validator/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "@hyperion-framework/validator",
"version": "1.0.0-alpha.3",
"main": "dist/index.js",
"module": "dist/index.es.js",
"web": "dist/index.umd.js",
"typings": "dist/types/index.d.ts",
"author": "Stephen Fraser <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c && tsc -p ./tsconfig.types.json",
"start": "rollup -c --watch",
"test": "jest",
"build-types": "tsc -p ./tsconfig.types.json",
"prepare": "NODE_ENV=production rollup -c && tsc -p ./tsconfig.types.json"
},
"dependencies": {
"ajv": "6.12.2"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"typescript": "^3.9.5"
}
}
4 changes: 4 additions & 0 deletions packages/validator/rollup.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { createRollupConfig } from '../../create-rollup-config';
import pkg from './package.json';

export default createRollupConfig('HyperionParser', pkg);
1 change: 1 addition & 0 deletions packages/validator/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './validator';
Loading

0 comments on commit f3d6f02

Please sign in to comment.