forked from TestArmada/magellan-mocha-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 KB
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": "testarmada-magellan-mocha-plugin",
"version": "9.0.1",
"description": "Magellan plugin to provide Mocha support",
"main": "index.js",
"scripts": {
"test": "npm run lint && mocha --slow 400 && npm run coverage && npm run check-coverage",
"lint": "eslint lib/** test/**.js",
"coverage": "istanbul cover _mocha -- --recursive",
"check-coverage": "istanbul check-coverage --statement 95 --function 95 --branch 90"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TestArmada/magellan-mocha-plugin.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/TestArmada/magellan-mocha-plugin/issues"
},
"homepage": "https://github.com/TestArmada/magellan-mocha-plugin#readme",
"dependencies": {
"cli-color": "^1.2.0",
"lodash": "^4.17.2",
"testarmada-logger": "^1.1.1"
},
"devDependencies": {
"chai": "^3.4.1",
"coffee-script": "^1.10.0",
"eslint": "^1.10.3",
"eslint-config-defaults": "^8.0.2",
"eslint-plugin-filenames": "^0.2.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"sinon": "^1.17.3"
}
}