wallet-core/node_modules/tapable/package.json

39 lines
855 B
JSON
Raw Normal View History

2017-05-03 15:35:00 +02:00
{
"name": "tapable",
2018-09-20 02:56:13 +02:00
"version": "1.1.0",
2017-05-03 15:35:00 +02:00
"author": "Tobias Koppers @sokra",
"description": "Just a little module for plugins.",
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/webpack/tapable.git"
},
"devDependencies": {
2018-09-20 02:56:13 +02:00
"babel-core": "^6.26.0",
"babel-jest": "^21.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"codecov": "^2.3.0",
"jest": "^21.0.4",
"prettier": "^1.13.2"
2017-05-03 15:35:00 +02:00
},
"engines": {
2018-09-20 02:56:13 +02:00
"node": ">=6"
2017-05-03 15:35:00 +02:00
},
"files": [
"lib"
],
"homepage": "https://github.com/webpack/tapable",
2018-09-20 02:56:13 +02:00
"main": "lib/index.js",
2017-05-03 15:35:00 +02:00
"scripts": {
2018-09-20 02:56:13 +02:00
"test": "jest",
"travis": "jest --coverage && codecov",
"pretty": "prettier --write lib/*.js lib/__tests__/*.js"
},
"jest": {
"transform": {
"__tests__[\\\\/].+\\.js$": "babel-jest"
}
2017-05-03 15:35:00 +02:00
}
}