2014-03-24 08:34:59 +01:00
|
|
|
{
|
|
|
|
|
"name": "pjax",
|
2015-02-04 08:39:36 +01:00
|
|
|
"version": "0.2.1",
|
2014-04-19 07:05:00 +02:00
|
|
|
"description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)",
|
2014-03-24 08:34:59 +01:00
|
|
|
"keywords": [
|
|
|
|
|
"pjax",
|
|
|
|
|
"push",
|
|
|
|
|
"state",
|
|
|
|
|
"ajax",
|
|
|
|
|
"navigation",
|
|
|
|
|
"transition",
|
|
|
|
|
"animation"
|
|
|
|
|
],
|
2016-03-12 07:27:47 +01:00
|
|
|
"repository": "https://github.com/MoOx/pjax.git",
|
2014-10-14 07:29:16 +02:00
|
|
|
"author": "Maxime Thirouin",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"main": "src/pjax.js",
|
|
|
|
|
"files": [
|
2015-02-04 08:39:36 +01:00
|
|
|
"index.js",
|
2016-03-12 07:27:06 +01:00
|
|
|
"lib",
|
|
|
|
|
"pjax.js"
|
2014-10-14 07:29:16 +02:00
|
|
|
],
|
2014-03-24 08:34:59 +01:00
|
|
|
"devDependencies": {
|
2014-05-04 08:26:31 +02:00
|
|
|
"browserify": "^3.46.0",
|
|
|
|
|
"coverify": "^1.0.6",
|
2014-10-14 07:29:16 +02:00
|
|
|
"jscs": "^1.6.2",
|
|
|
|
|
"jshint": "^2.5.6",
|
2015-11-13 10:40:59 +11:00
|
|
|
"serve": "1.4.0",
|
2014-05-04 08:26:31 +02:00
|
|
|
"tape": "^3.0.0",
|
|
|
|
|
"testling": "^1.6.1"
|
2014-10-14 07:29:16 +02:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"lint": "jscs **/*.js && jshint . --exclude-path .gitignore",
|
2015-02-19 07:51:42 +01:00
|
|
|
"test": "npm run lint && npm run standalone && testling",
|
2014-05-05 08:20:50 +02:00
|
|
|
"test--html": "testling --html > tests/scripts/index.html",
|
2015-02-19 07:51:42 +01:00
|
|
|
"coverage": "browserify -t coverify tests/**/*.js | testling | coverify",
|
2015-11-13 10:28:16 +11:00
|
|
|
"standalone": "browserify index.js --standalone Pjax > pjax.js",
|
2015-11-13 10:40:59 +11:00
|
|
|
"example": "echo '\n==> Open http://localhost:3000/example in your browser.'; serve .",
|
2015-11-13 10:28:16 +11:00
|
|
|
"prepublish": "npm run standalone"
|
2014-05-04 08:16:44 +02:00
|
|
|
},
|
|
|
|
|
"testling": {
|
|
|
|
|
"files": "tests/**/*.js",
|
|
|
|
|
"browsers": [
|
2014-05-04 08:54:46 +02:00
|
|
|
"ie/10..latest",
|
2015-11-13 10:40:59 +11:00
|
|
|
"firefox/4.0",
|
|
|
|
|
"firefox/latest",
|
|
|
|
|
"firefox/nightly",
|
|
|
|
|
"chrome/10",
|
|
|
|
|
"chrome/latest",
|
|
|
|
|
"chrome/canary",
|
2014-05-04 08:43:56 +02:00
|
|
|
"opera/12..latest",
|
|
|
|
|
"opera/next",
|
|
|
|
|
"safari/5.1..latest",
|
|
|
|
|
"ipad/6.0..latest",
|
|
|
|
|
"iphone/6.0..latest",
|
|
|
|
|
"android-browser/4.2..latest"
|
2014-05-04 08:16:44 +02:00
|
|
|
]
|
2014-03-24 08:34:59 +01:00
|
|
|
}
|
|
|
|
|
}
|