Files
pjax/package.json

40 lines
810 B
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",
"postcss": "^2.2.5"
},
"scripts": {
"lint": "jscs **/*.js && jshint . --exclude-path .gitignore",
"test": "npm run lint"
2014-03-24 08:34:59 +01:00
}
}