wallet-core/node_modules/replace-ext/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

36 lines
944 B
JSON

{
"name":"replace-ext",
"description":"Replaces a file extension with another one",
"version":"0.0.1",
"homepage":"http://github.com/wearefractal/replace-ext",
"repository":"git://github.com/wearefractal/replace-ext.git",
"author":"Fractal <contact@wearefractal.com> (http://wearefractal.com/)",
"main":"./index.js",
"dependencies":{
},
"devDependencies": {
"mocha": "~1.17.0",
"should": "~3.1.0",
"mocha-lcov-reporter": "~0.0.1",
"coveralls": "~2.6.1",
"istanbul": "~0.2.3",
"rimraf": "~2.2.5",
"jshint": "~2.4.1"
},
"scripts": {
"test": "mocha --reporter spec && jshint",
"coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"engines": {
"node": ">= 0.4"
},
"licenses":[
{
"type":"MIT",
"url":"http://github.com/wearefractal/replace-ext/raw/master/LICENSE"
}
]
}