Files
pjax/package.json

68 lines
1.7 KiB
JSON
Raw Normal View History

2014-03-24 08:34:59 +01:00
{
"name": "pjax",
2015-02-04 08:39:36 +01:00
"version": "0.2.1",
"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"
],
2014-10-14 07:29:16 +02:00
"repository": {
"type": "git",
"url": "https://github.com/MoOx/pjax.git"
},
"homepage": "https://github.com/MoOx/pjax",
2014-03-24 08:34:59 +01:00
"bugs": {
"url": "https://github.com/MoOx/pjax/issues"
},
2014-10-14 07:29:16 +02:00
"author": "Maxime Thirouin",
"license": "MIT",
"main": "src/pjax.js",
"files": [
"CHANGELOG.md",
"LICENSE",
2015-02-04 08:39:36 +01:00
"index.js",
"lib"
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",
"test": "npm run lint && npm run standalone && testling",
2014-05-05 08:20:50 +02:00
"test--html": "testling --html > tests/scripts/index.html",
"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": [
"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
}
}