-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.93 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "json-schema-forms",
"version": "0.2.0-alpha.2",
"description": "A pure JavaScript tool that generates HTML forms from JSON Schemas.",
"license": "GPL-3.0-or-later",
"keywords": [
"json",
"schema",
"form",
"html-form",
"jsonschema",
"json-schema",
"json-schema-form",
"bootstrap"
],
"author": {
"name": "Hernán Blanco",
"email": "hblanco@pm.me",
"url": "https://github.com/hblanko"
},
"repository": {
"type": "git",
"url": "https://github.com/hblanko/json-schema-forms.git"
},
"main": "src/index.js",
"files": [
"dist/json-schema-forms.min.js",
"css/json-schema-forms.css",
"src/**/*"
],
"scripts": {
"build": "parcel build ./src/index.js --out-dir dist --no-source-maps -o json-schema-forms.min.js",
"dev": "parcel ./tests/example-dev.html --out-dir serve",
"doc": "jsdoc -c ./.jsdoc.json",
"lint": "eslint ./src --ext .js",
"prettify": "prettier-eslint --eslint-config-path ./.eslintrc.js --write \"$PWD/src/**/*.js\" \"$PWD/package.json\"",
"prettify:tests": "prettier-eslint --eslint-config-path ./.eslintrc.js --write \"$PWD/tests/**/*{.js,.html}\"",
"setup-bundler": "yarn add parcel-bundler --dev"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn doc && git add docs"
}
},
"lint-staged": {
"src/**/*.js": "prettier-eslint --eslint-config-path ./.eslintrc.js --write",
"package.json": "prettier-eslint --eslint-config-path ./.eslintrc.js --write"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.1.0",
"eslint-plugin-jsdoc": "^25.4.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.5",
"prettier-eslint": "^10.1.1",
"prettier-eslint-cli": "^5.0.0"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.1",
"es": "^0.7.3",
"jquery": "^3.5.1"
}
}