Files
pjax/package.json

70 lines
1.7 KiB
JSON
Raw Normal View History

2014-03-24 08:34:59 +01:00
{
"name": "pjax",
2014-04-03 07:08:47 +02:00
"version": "0.1.2",
"description": "Easily enable fast Ajax navigation on any website (using pushState + xhr)",
"main": "src/pjax.js",
2014-03-24 08:34:59 +01:00
"scripts": {
2014-05-04 08:26:31 +02:00
"test": "testling",
"coverage": "browserify -t coverify tests/**/*.js | testling | coverify"
2014-03-24 08:34:59 +01:00
},
"repository": {
"type": "git",
"url": "https://github.com/MoOx/pjax.git"
},
"keywords": [
"pjax",
"push",
"state",
"ajax",
"navigation",
"transition",
"animation"
],
"author": "MoOx <m@moox.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MoOx/pjax/issues"
},
"homepage": "https://github.com/MoOx/pjax",
"devDependencies": {
2014-05-04 08:26:31 +02:00
"browserify": "^3.46.0",
2014-05-04 08:16:31 +02:00
"connect": "^2.14.4",
"connect-livereload": "^0.3.2",
2014-05-04 08:26:31 +02:00
"coverify": "^1.0.6",
2014-03-24 08:34:59 +01:00
"gulp": "^3.5.6",
2014-05-04 08:16:31 +02:00
"gulp-autoprefixer": "0.0.7",
"gulp-browserify": "^0.5.0",
"gulp-gh-pages": "^0.2.0",
"gulp-jscs": "^0.3.2",
"gulp-jshint": "^1.5.1",
2014-05-04 08:16:31 +02:00
"gulp-livereload": "^1.3.1",
"gulp-plumber": "^0.5.6",
"gulp-rework": "^0.2.2",
"gulp-util": "^2.2.14",
"jshint-stylish": "^0.1.5",
"minimist": "0.0.8",
"opn": "^0.1.1",
"rework": "^0.20.2",
"rework-calc": "^0.2.1",
"rework-vars": "^2.0.0",
"rimraf": "^2.2.6",
"tape": "^2.12.3",
2014-05-04 08:26:31 +02:00
"testling": "^1.6.1",
2014-05-04 08:16:31 +02:00
"uglifyify": "^2.1.1"
2014-05-04 08:16:44 +02:00
},
"testling": {
"files": "tests/**/*.js",
"browsers": [
"ie/10..latest",
2014-05-04 08:43:56 +02:00
"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"
2014-05-04 08:16:44 +02:00
]
2014-03-24 08:34:59 +01:00
}
}