Files
pjax/package.json

51 lines
1.5 KiB
JSON
Raw Normal View History

2014-03-24 08:34:59 +01:00
{
"name": "pjax",
2016-07-11 07:11:39 +02:00
"version": "0.2.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"
],
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",
"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",
2018-01-09 00:48:27 -05:00
"jscs": "^3.0.7",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
2014-10-14 07:29:16 +02:00
"jshint": "^2.5.6",
"npmpub": "^3.1.0",
"nyc": "^11.4.1",
2016-07-11 07:11:39 +02:00
"opn-cli": "^3.1.0",
2015-11-13 10:40:59 +11:00
"serve": "1.4.0",
"tap-nyc": "^1.0.3",
"tap-spec": "^4.1.1",
"tape": "^3.0.0"
2014-10-14 07:29:16 +02:00
},
"scripts": {
2018-01-09 00:44:04 -05:00
"lint": "jscs . && jshint . --exclude-path .gitignore",
2016-03-12 07:42:37 +01:00
"standalone": "browserify index.js --standalone Pjax > pjax.js",
"build-debug": "browserify index.js --debug --standalone Pjax > pjax.js",
"tests": "tape -r ./tests/index.js ./tests/**/*.js",
"test": "npm run lint && npm run tests | tap-spec",
"coverage-tests": "npm run tests | tap-nyc",
"coverage": "nyc -x \"tests/**\" npm run coverage-tests",
2016-07-11 07:11:39 +02:00
"example": "opn http://localhost:3000/example/; serve .",
"prepublish": "npm run standalone",
2016-07-11 07:11:39 +02:00
"#release": "testling does not work in a process launch by npm... :facepalm:",
"release": "echo \"npmpub --skip-test --dry && npm test && npmpub --skip-test --skip-cleanup\""
2014-03-24 08:34:59 +01:00
}
}