aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorSpainTrain <spain@homebuddy.io>2015-09-24 16:24:50 -0400
committerRichard van Velzen <rvanvelzen@experty.com>2015-10-07 13:52:49 +0200
commit99945fcd040b3f28360d69f5b8ab7b679e7b3375 (patch)
tree914af1f3acc1c8a9caa490c7b15417259f70b0e4 /package.json
parent0d952ae43de50d85a2315b2a94594eaf5f498009 (diff)
downloadtracifyjs-99945fcd040b3f28360d69f5b8ab7b679e7b3375.tar.gz
tracifyjs-99945fcd040b3f28360d69f5b8ab7b679e7b3375.zip
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)
Diffstat (limited to 'package.json')
-rw-r--r--package.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/package.json b/package.json
index c50a64f6..51b309b9 100644
--- a/package.json
+++ b/package.json
@@ -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"
}
}