Compare commits

...

1 Commits

Author SHA1 Message Date
Robin North
5bbeb31ca6 Switch to Yarn for dependency management 2018-05-28 20:44:15 +01:00
3 changed files with 4287 additions and 6897 deletions

6892
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -43,14 +43,14 @@
"scripts": {
"lint": "jscs . && jshint . --exclude-path .gitignore",
"standalone": "browserify index.js --standalone Pjax > pjax.js",
"build": "npm run standalone && uglifyjs pjax.js -o pjax.min.js",
"build": "yarn run standalone && uglifyjs pjax.js -o pjax.min.js",
"build-debug": "browserify index.js --debug --standalone Pjax > pjax.js",
"tests": "tape -r ./tests/setup.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",
"test": "yarn run lint && yarn run tests | tap-spec",
"coverage-tests": "yarn run tests | tap-nyc",
"coverage": "nyc -x \"tests/**\" yarn run coverage-tests",
"example": "opn http://localhost:3000/example/ && serve -p 3000 .",
"prepublish": "npm run build",
"prepublish": "yarn run build",
"release": "npmpub"
}
}

4282
yarn.lock Normal file

File diff suppressed because it is too large Load Diff