61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "pjax",
|
|
"version": "0.2.1",
|
|
"description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)",
|
|
"keywords": [
|
|
"pjax",
|
|
"push",
|
|
"state",
|
|
"ajax",
|
|
"navigation",
|
|
"transition",
|
|
"animation"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/MoOx/pjax.git"
|
|
},
|
|
"homepage": "https://github.com/MoOx/pjax",
|
|
"bugs": {
|
|
"url": "https://github.com/MoOx/pjax/issues"
|
|
},
|
|
"author": "Maxime Thirouin",
|
|
"license": "MIT",
|
|
"main": "src/pjax.js",
|
|
"files": [
|
|
"CHANGELOG.md",
|
|
"LICENSE",
|
|
"index.js",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"browserify": "^3.46.0",
|
|
"coverify": "^1.0.6",
|
|
"jscs": "^1.6.2",
|
|
"jshint": "^2.5.6",
|
|
"tape": "^3.0.0",
|
|
"testling": "^1.6.1"
|
|
},
|
|
"scripts": {
|
|
"lint": "jscs **/*.js && jshint . --exclude-path .gitignore",
|
|
"test": "npm run lint && npm run standalone && testling",
|
|
"test--html": "testling --html > tests/scripts/index.html",
|
|
"coverage": "browserify -t coverify tests/**/*.js | testling | coverify",
|
|
"standalone": "browserify index.js --standalone Pjax > pjax.js"
|
|
},
|
|
"testling": {
|
|
"files": "tests/**/*.js",
|
|
"browsers": [
|
|
"ie/10..latest",
|
|
"firefox/4.0", "firefox/latest", "firefox/nightly",
|
|
"chrome/10", "chrome/latest", "chrome/canary",
|
|
"opera/12..latest",
|
|
"opera/next",
|
|
"safari/5.1..latest",
|
|
"ipad/6.0..latest",
|
|
"iphone/6.0..latest",
|
|
"android-browser/4.2..latest"
|
|
]
|
|
}
|
|
}
|