41 lines
798 B
JSON
41 lines
798 B
JSON
{
|
|
"name": "jsx-dom",
|
|
"version": "7.0.1",
|
|
"description": "JSX to document.createElement.",
|
|
"main": "index.js",
|
|
"module": "index.js",
|
|
"keywords": [
|
|
"jsx",
|
|
"dom"
|
|
],
|
|
"typings": "index.d.ts",
|
|
"author": "proteriax",
|
|
"license": "BSD-3-Clause",
|
|
"dependencies": {
|
|
"csstype": "^3.0.8"
|
|
},
|
|
"eslintIgnore": [
|
|
"build"
|
|
],
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged && yarn build && yarn test"
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/proteriax/jsx-dom.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/proteriax/jsx-dom/issues"
|
|
},
|
|
"homepage": "https://github.com/proteriax/jsx-dom#readme",
|
|
"type": "module"
|
|
}
|