diff --git a/.gitignore b/.gitignore index fc85cd2..a6e12dc 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ bower_components/ node_modules/ package-lock.json yarn.lock +.npmrc diff --git a/.npmrc_sample b/.npmrc_sample new file mode 100644 index 0000000..ee05e24 --- /dev/null +++ b/.npmrc_sample @@ -0,0 +1,3 @@ +registry=https://registry.npmjs.org/ +@rippling:registry=https://npm.pkg.github.com/ +//npm.pkg.github.com/:_authToken=github-token diff --git a/package.json b/package.json index 7340311..69dd65c 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "papaparse", + "name": "@rippling/papaparse", "version": "4.6.0", "description": "Fast and powerful CSV parser for the browser that supports web workers and streaming large files. Converts CSV to JSON and JSON to CSV.", "keywords": [ @@ -27,7 +27,7 @@ "homepage": "http://papaparse.com", "repository": { "type": "git", - "url": "https://github.com/mholt/PapaParse.git" + "url": "ssh://git@github.com/Rippling/PapaParse.git" }, "author": { "name": "Matthew Holt", @@ -53,5 +53,8 @@ "test-phantomjs": "node tests/test.js --phantomjs", "test-node": "mocha tests/node-tests.js tests/test-cases.js", "test": "npm run lint && npm run test-node && npm run test-phantomjs" + }, + "publishConfig": { + "registry": "https://npm.pkg.github.com/" } }