wallet-core/node_modules/v8flags/package.json
Florian Dold 82f2b76e25
Reorganize module loading.
We now use webpack instead of SystemJS, effectively bundling modules
into one file (plus commons chunks) for every entry point.  This results
in a much smaller extension size (almost half).  Furthermore we use
yarn/npm even for extension run-time dependencies.  This relieves us
from manually vendoring and building dependencies.  It's also easier to
understand for new developers familiar with node.
2017-04-24 16:14:29 +02:00

43 lines
861 B
JSON

{
"name": "v8flags",
"description": "Get available v8 flags.",
"version": "2.1.1",
"homepage": "https://github.com/tkellen/node-v8flags",
"author": {
"name": "Tyler Kellen",
"url": "http://goingslowly.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/tkellen/node-v8flags.git"
},
"bugs": {
"url": "https://github.com/tkellen/node-v8flags/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/tkellen/node-v8flags/blob/master/LICENSE"
}
],
"scripts": {
"test": "_mocha -R spec test.js"
},
"main": "index.js",
"engines": {
"node": ">= 0.10.0"
},
"keywords": [
"v8 flags",
"harmony flags"
],
"devDependencies": {
"async": "^0.9.0",
"chai": "~1.9.1",
"mocha": "~1.21.4"
},
"dependencies": {
"user-home": "^1.1.1"
}
}