Files
pjax/package.json

53 lines
1.1 KiB
JSON
Raw Normal View History

2014-03-24 08:34:59 +01:00
{
"name": "pjax",
2014-10-14 07:42:56 +02:00
"version": "0.1.4",
"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",
"src"
],
2014-03-24 08:34:59 +01:00
"devDependencies": {
2014-10-14 07:29:16 +02:00
"jscs": "^1.6.2",
"jshint": "^2.5.6",
2014-05-04 08:16:31 +02:00
"tape": "^3.0.0"
2014-10-14 07:29:16 +02:00
},
"scripts": {
"lint": "jscs **/*.js && jshint . --exclude-path .gitignore",
"test": "npm run lint"
2014-05-04 08:16:44 +02:00
},
"testling": {
"files": "tests/**/*.js",
"browsers": [
"ie/7..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/6..latest",
"opera/11.0..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/latest"
]
2014-03-24 08:34:59 +01:00
}
}