-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "mocha-in-browser",
"version": "1.0.0",
"description": "Run tests using Mocha in browser",
"main": "index.js",
"scripts": {
"test": "node run-tests.js",
"build": "babel src --out-dir lib",
"build-tests": "babel tests --out-dir lib/tests",
"webpack": "webpack",
"watch": "webpack --watch",
"dev": "webpack && serve",
"serve": "http-server -p 9000",
"karma": "karma start --single-run --browsers ChromeHeadless karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/idanen/mocha-in-browser.git"
},
"keywords": [
"testing",
"unit-test",
"mocha"
],
"author": "Idan Entin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/idanen/mocha-in-browser/issues"
},
"homepage": "https://github.com/idanen/mocha-in-browser#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"sinon": "^7.1.0"
},
"devDependencies": {
"babel-loader": "^7.1.2",
"copy-webpack-plugin": "^4.1.1",
"html-webpack-plugin": "^2.30.1",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"puppeteer": "^1.4.0",
"webpack": "^3.7.1",
"webpack-dev-server": "^3.1.10"
}
}