hta
Version:
The tiny framework for building Hyper Text Application with ease
83 lines (82 loc) • 2.13 kB
JSON
{
"name": "hta",
"version": "1.3.1",
"description": "The tiny framework for building Hyper Text Application with ease",
"main": "core/index.js",
"types": "src/index.d.ts",
"scripts": {
"test": "jest --runInBand --detectOpenHandles",
"build-browser": "rollup $INPUT --config --file $OUTPUT --output.name hta --format iife && gzip-size $OUTPUT",
"build-browser-compact": "cross-env INPUT=./browser/compact.js OUTPUT=./dist/compact.js npm run build-browser",
"build-browser-all": "npm run build-browser-compact",
"_publish": "npm run test && npm run build-browser-all && npm publish"
},
"files": [
"core",
"hook",
"store",
"async",
"context",
"router",
"styled",
"dist"
],
"bugs": {
"url": "https://github.com/linq2js/hta/issues"
},
"homepage": "https://github.com/linq2js/hta#readme",
"keywords": [
"hta",
"dom",
"dom manipulation",
"dom mutating",
"dom modifier",
"dom update",
"html",
"element",
"node",
"frontend",
"framework",
"web",
"app",
"ui"
],
"jest": {
"transform": {
"^.+\\.[t|j]sx?$": "babel-jest"
},
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"author": "",
"license": "ISC",
"peerDependencies": {},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.7.7",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/runtime": "^7.7.7",
"@types/jest": "^25.2.3",
"@typescript-eslint/parser": "^3.7.1",
"babel-jest": "^26.2.2",
"babel-plugin-module-resolver": "^4.0.0",
"cross-env": "^7.0.2",
"gzip-size-cli": "^3.0.0",
"jest": "^26.2.2",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"rollup": "^2.33.1",
"uglify-js": "^3.11.5",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.0.2",
"parcel-bundler": "^1.12.4",
"path-to-regexp": "^6.2.0",
"history": "^5.0.0",
"stylis": "^4.0.3"
},
"dependencies": {}
}