-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 903 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "webpack-ava-recipe",
"version": "1.0.0",
"description": "An example of compiling your tests using webpack before running them through Ava.",
"main": "./src/foo.js",
"scripts": {
"test": "webpack && ava",
"watch:webpack": "webpack --watch",
"watch:runTests": "ava --watch",
"watch:test": "start cmd /c npm run watch:webpack & start cmd /c npm run watch:runTests"
},
"repository": {
"type": "git",
"url": "https://github.com/greyepoxy/webpack-ava-recipe.git"
},
"keywords": [
"webpack",
"ava",
"recipe"
],
"author": "greyepoxy",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.6.3",
"ava": "^2.4.0",
"babel-loader": "^8.0.6",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-node-externals": "^1.5.4"
},
"ava": {
"files": [
"_build/**/*"
],
"verbose": true
}
}