Pin dependencies with npm shrinkwrap

* Use `npm run shrinkwrap` to create a shrinkwrap file with all dependencies pinned
* Update dependency `source-map` to latest (Closes #738)
This commit is contained in:
SpainTrain
2015-09-24 16:24:50 -04:00
committed by Richard van Velzen
parent 0d952ae43d
commit 99945fcd04
2 changed files with 130 additions and 1 deletions

View File

@@ -30,7 +30,7 @@
],
"dependencies": {
"async": "~0.2.6",
"source-map": "0.1.34",
"source-map": "~0.5.1",
"uglify-to-browserify": "~1.0.0",
"yargs": "~3.5.4"
},
@@ -46,6 +46,7 @@
]
},
"scripts": {
"shrinkwrap": "rm ./npm-shrinkwrap.json; rm -rf ./node_modules; npm i && npm shrinkwrap && npm outdated",
"test": "node test/run-tests.js"
}
}