1
|
{
|
2
|
"name": "tapable",
|
3
|
"version": "1.1.3",
|
4
|
"author": "Tobias Koppers @sokra",
|
5
|
"description": "Just a little module for plugins.",
|
6
|
"license": "MIT",
|
7
|
"repository": {
|
8
|
"type": "git",
|
9
|
"url": "http://github.com/webpack/tapable.git"
|
10
|
},
|
11
|
"devDependencies": {
|
12
|
"babel-core": "^6.26.0",
|
13
|
"babel-jest": "^21.0.2",
|
14
|
"babel-polyfill": "^6.26.0",
|
15
|
"babel-preset-env": "^1.6.0",
|
16
|
"codecov": "^2.3.0",
|
17
|
"jest": "^21.0.4",
|
18
|
"prettier": "^1.13.2"
|
19
|
},
|
20
|
"engines": {
|
21
|
"node": ">=6"
|
22
|
},
|
23
|
"files": [
|
24
|
"lib",
|
25
|
"!lib/__tests__"
|
26
|
],
|
27
|
"homepage": "https://github.com/webpack/tapable",
|
28
|
"main": "lib/index.js",
|
29
|
"scripts": {
|
30
|
"test": "jest",
|
31
|
"travis": "jest --coverage && codecov",
|
32
|
"pretty": "prettier --write lib/*.js lib/__tests__/*.js"
|
33
|
},
|
34
|
"jest": {
|
35
|
"transform": {
|
36
|
"__tests__[\\\\/].+\\.js$": "babel-jest"
|
37
|
}
|
38
|
}
|
39
|
}
|