@pageworks/pjax
Version:
Turns any website into a SPA using Fetch and link prefetching.
56 lines (55 loc) • 1.45 kB
JSON
{
"name": "@pageworks/pjax",
"version": "2.3.2",
"description": "Turns any website into a SPA using Fetch and link prefetching.",
"keywords": [
"pjax",
"pushstate",
"ajax",
"navigation",
"transition",
"animation",
"prefetcher",
"typescript",
"fetch"
],
"repository": "https://github.com/Pageworks/pjax.git",
"author": "Pageworks",
"license": "MIT",
"main": "pjax.js",
"types": "./src/global.d.ts",
"files": [
"src",
"lib",
"pjax.js",
"pjax.js.map",
"pjax.d.ts"
],
"husky": {
"hooks": {
"pre-commit": "npm run precommit"
}
},
"dependencies": {
"@pageworks/device-manager": "^1.2.3",
"@pageworks/state-manager": "latest"
},
"devDependencies": {
"http-server": "^0.11.1",
"husky": "^0.14.3",
"npm-run-all": "^4.1.5",
"tslint": "^5.19.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7"
},
"scripts": {
"precommit": "tslint -c .tslintrc.js -p tsconfig.json -t verbose",
"compile": "tsc",
"bundle": "webpack",
"demo": "http-server ./testing",
"test": "npm run compile && npm run bundle && npm run demo"
}
}