-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathpackage.json
134 lines (134 loc) · 3.88 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "mocha-webpack",
"version": "2.0.0-beta.0",
"description": "mocha cli with webpack support",
"bin": {
"mocha-webpack": "./bin/mocha-webpack"
},
"main": "./lib/createMochaWebpack.js",
"files": [
"*.md",
"bin",
"src",
"lib"
],
"scripts": {
"clean-lib": "del-cli \"lib/**\" \"!lib\" \"!lib/reporters\" \"!lib/utils.js\" \"!lib/entry.js\" \"!lib/reporters/base.js\"",
"clean-tmp": "del-cli \".tmp/**\"",
"build": "npm run clean-lib && babel ./src -d lib",
"lint": "eslint --report-unused-disable-directives src test bin",
"flow": "flow",
"test": "npm run clean-tmp && npm run build && mocha --timeout 10000 --recursive --require babel-register \"test/**/*.test.js\"",
"cover": "cross-env BABEL_ENV=coverage nyc --reporter=lcov --reporter=text npm test",
"posttest": "npm run lint",
"docs:clean": "del-cli _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:clean && npm run docs:prepare && gitbook build",
"docs:watch": "npm run docs:prepare && gitbook serve --port 3000",
"docs:deploy": "gh-pages -d _book",
"prepublish": "npm run build && npm run docs:build",
"postpublish": "npm run docs:deploy",
"release": "np"
},
"repository": {
"type": "git",
"url": "https://github.com/zinserjan/mocha-webpack"
},
"bugs": {
"url": "https://github.com/zinserjan/mocha-webpack/issues"
},
"keywords": [
"webpack",
"mocha"
],
"author": "Jan-André Zinser",
"license": "MIT",
"peerDependencies": {
"mocha": ">=4 <=5",
"webpack": "^4.0.0"
},
"devDependencies": {
"anymatch": "^2.0.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "~7.1.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-lodash": "^3.2.10",
"babel-plugin-transform-class-properties": "^6.5.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.5.2",
"bdd-lazy-var": "^2.1.2",
"chai": "^4.1.0",
"coffee-script": "^1.11.1",
"cross-env": "^5.1.0",
"css-loader": "~0.28.7",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"eslint": "^4.19.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-flowtype-errors": "^3.5.1",
"eslint-plugin-import": "^2.9.0",
"fast-async": "^6.1.2",
"flow-bin": "^0.68.0",
"fs-extra": "^5.0.0",
"gh-pages": "^1.0.0",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-anchors": "^0.7.1",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^2.0.0",
"glob": "7.1.2",
"mocha": "^5.0.1",
"node-sass": "~4.7.2",
"np": "^2.9.0",
"nyc": "^11.3.0",
"sass-loader": "~6.0.0",
"sinon": "^4.0.1",
"tiny-worker": "^2.1.2",
"webpack": "^4",
"worker-loader": "^1.1.1",
"write-file-webpack-plugin": "^4.2.0"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"chalk": "^2.3.0",
"chokidar": "^2.0.2",
"glob-parent": "^3.1.0",
"globby": "^7.1.1",
"interpret": "^1.0.1",
"is-glob": "^4.0.0",
"loader-utils": "^1.1.0",
"lodash": "^4.3.0",
"memory-fs": "^0.4.1",
"nodent-runtime": "^3.0.3",
"normalize-path": "^2.0.1",
"progress": "^2.0.0",
"source-map-support": "^0.5.0",
"strip-ansi": "^4.0.0",
"toposort": "^1.0.0",
"yargs": "^11.0.0"
},
"greenkeeper": {
"ignore": [
"globby",
"gitbook-cli",
"gitbook-plugin-anchors",
"gitbook-plugin-edit-link",
"gitbook-plugin-github",
"gitbook-plugin-prism"
]
},
"nyc": {
"include": [
"src/**/*.js"
],
"sourceMap": false,
"instrument": false
}
}