UNPKG

redom-jsx

Version:

Tiny turboboosted JavaScript library for creating user interfaces. 100 % test coverage!

76 lines 2.53 kB
{ "name": "redom-jsx", "version": "3.29.4", "description": "Tiny turboboosted JavaScript library for creating user interfaces. 100 % test coverage!", "main": "dist/redom.js", "module": "dist/redom.es.js", "jsnext:main": "dist/redom.es.js", "sideEffects": false, "repository": { "type": "git", "url": "git+https://github.com/redom/redom.git" }, "keywords": [ "redom", "javascript", "tiny", "dom", "library" ], "author": "Juha Lindstedt", "license": "MIT", "bugs": { "url": "https://github.com/redom/redom/issues" }, "semistandard": { "ignore": [ "/dist/", "/node_modules/", "/test/" ] }, "homepage": "https://redom.js.org", "devDependencies": { "browserify": "^17.0.0", "butternut": "~0.4.6", "coverify": "^1.5.1", "gh-pages": "~4.0.0", "rollup": "~2.79.0", "marked": "~4.1.0", "rollup-plugin-buble": "~0.19.8", "rollup-plugin-node-resolve": "~5.2.0", "semistandard": "~16.0.1", "tape": "^5.6.0", "tape-run": "^10.0.0", "terser": "~5.15.0" }, "dependencies": {}, "collective": { "type": "opencollective", "url": "https://opencollective.com/redom", "logo": "https://opencollective.com/redom/logo.txt" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/redom" }, "types": "index.d.ts", "scripts": { "dev": "node watch", "dist": "gh-pages -d dist", "build-es": "rollup -c -n redom -f es -i esm/index.js -o dist/redom.es.js", "build-js": "rollup -c -n redom -f umd -i esm/index.js -o dist/redom.js", "build": "npm run build-es && npm run build-js", "minify": "npm run minify-js && npm run minify-es", "minify-js": "terser dist/redom.js -cmo dist/redom.min.js", "minify-es": "terser dist/redom.es.js -o dist/redom.es.min.js", "preversion": "npm run build && npm run minify && npm run test", "postversion": "git push --tags", "prepublish": "npm run build && npm run minify && npm run test", "fixlint": "semistandard 'esm/**/*.js' 'test/test.js' --fix", "lint": "semistandard 'esm/**/*.js' 'test/test.js'", "test": "npm run lint && rollup -c -n redom -f cjs esm/index.js -o test/redom.js && browserify -t coverify test/index.js | tape-run | coverify", "nocoverage": "semistandard esm/index.js && rollup -c -n redom -f cjs esm/index.js -o test/redom.js && browserify test/index.js | tape-run", "justtest": "browserify -t coverify test/index.js | tape-run | coverify" } }