hy-push-state
Version:
Turn web sites into web apps
99 lines (98 loc) • 2.74 kB
JSON
{
"name": "hy-push-state",
"version": "1.0.0-hydejack.15",
"description": "Turn web sites into web apps",
"main": "lib/vanilla/index.js",
"scripts": {
"test": "eslint src webpack.config.js",
"clean": "rm -rf dist lib doc/source",
"build": "npm run build:dev & npm run build:prod & npm run build:lite & npm run build:lib & npm run build:doc & wait",
"build:lib": "babel src --out-dir lib",
"build:prod": "webpack --env prod",
"build:lite": "webpack --env lite",
"build:dev": "webpack --env dev",
"build:doc": "scripts/gen-doc.js",
"watch": "npm run watch:src & npm run watch:doc",
"watch:src": "webpack --progress --colors --watch --env dev",
"watch:doc": "npm run build:doc && onchange 'src/**/*.js' -- npm run build:doc '{{changed}}'",
"serve": "http-server -s -p $npm_package_config_port",
"dev": "npm run watch & npm run serve",
"prepublishOnly": "npm run test && npm run clean && npm run build",
"version": "npm run build:doc && git add ."
},
"config": {
"port": "8081"
},
"author": "Florian Klampfer <mail@qwtel.com> (https://qwtel.com/)",
"license": "GPL-3.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify-css": "^0.14.0",
"camelcase": "^4.1.0",
"docco": "0.7.0",
"envify": "^4.1.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.10",
"html-webpack-plugin": "^2.30.1",
"onchange": "^3.3.0",
"raw-loader": "^0.5.1",
"underscore-template-loader": "^1.0.0",
"webpack": "3.11.0",
"webpack-merge": "^4.1.2",
"yargs": "^11.0.0"
},
"dependencies": {
"attr-types": "^1.0.0",
"core-js": "^2.5.3",
"hy-component": "^1.0.0-hydejack.14",
"qd-set": "^1.0.0",
"rxjs": "^5.5.6"
},
"optionalDependencies": {
"jquery": "^3.3.1"
},
"directories": {
"lib": "./lib",
"doc": "./doc",
"example": "./example"
},
"repository": {
"type": "git",
"url": "https://github.com/qwtel/hy-push-state.git"
},
"bugs": {
"url": "https://github.com/qwtel/hy-push-state/issues"
},
"homepage": "https://qwtel.com/hy-push-state/",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"env"
],
"only": [
"./src",
"hy-component",
"camelcase"
]
}
],
[
"envify",
{
"DEBUG": false
}
]
]
}
}