Flatlogic Bot ca3a32f23e V 4
2026-02-16 06:55:36 +00:00

98 lines
2.1 KiB
JSON

{
"name": "himalaya",
"description": "HTML to JSON parser",
"version": "1.1.1",
"author": "Chris Andrejewski <christopher.andrejewski@gmail.com>",
"ava": {
"require": [
"@babel/register"
]
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [],
"env": {
"nyc": {
"plugins": [
"istanbul"
]
}
}
},
"bugs": {
"url": "https://github.com/andrejewski/himalaya/issues"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.11",
"@babel/preset-stage-0": "^7.8.3",
"@babel/register": "^7.17.0",
"ava": "^4.1.0",
"babel-plugin-istanbul": "^6.1.1",
"babelify": "^10.0.0",
"browserify": "^16.5.2",
"coveralls": "^3.1.1",
"del": "^3.0.0",
"fixpack": "^2.3.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-sourcemaps": "^3.0.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"prettier": "^3.0.1",
"source-map-support": "^0.5.21",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0"
},
"homepage": "https://github.com/andrejewski/himalaya",
"keywords": [
"ast",
"html",
"json",
"parser"
],
"license": "ISC",
"main": "lib/index.js",
"nyc": {
"include": [
"src/*.js"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false,
"reporter": [
"lcov",
"text"
]
},
"pre-commit": [
"pre-commit"
],
"pre-push": [
"pre-commit"
],
"prettier": {
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "https://github.com/andrejewski/himalaya.git"
},
"scripts": {
"build": "gulp build",
"coverage": "NODE_ENV=nyc nyc npm test && nyc report --reporter=lcovonly",
"format": "fixpack && prettier '**/*.{js,yml,yaml}' --write --log-level warn",
"format-check": "prettier 'src/**/*.{js,yml,yaml}' --check",
"himalaya": "./bin/himalaya.js",
"pre-commit": "npm run format && npm test && npm run build",
"test": "gulp buildSrc --silent && ava"
}
}