This repository was archived by the owner on Aug 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.32 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.32 KB
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
{
"name": "@code.gov/json-schema-validator-web-component",
"version": "0.2.3",
"description": "Simple Web Component that Validates a JSON File",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/babel src/index.js -o dist/json-schema-validator.js",
"demo": "http-server",
"demo-on-server": "sudo PORT=80 http-server",
"update-example-schema": "wget https://raw.githubusercontent.com/GSA/code-gov-data/master/schemas/schema-2.0.0.json -O example-schema.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GSA/json-schema-validator-web-component.git"
},
"keywords": [
"JSON",
"Schema",
"Web",
"Component"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/GSA/json-schema-validator-web-component/issues"
},
"homepage": "https://github.com/GSA/json-schema-validator-web-component#readme",
"dependencies": {
"jsoneditor": "^6.0.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-transform-arrow-functions": "^7.0.0",
"@babel/plugin-transform-classes": "^7.1.0",
"@babel/plugin-transform-destructuring": "^7.1.3",
"@babel/plugin-transform-template-literals": "^7.0.0"
}
}