-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.47 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
{
"name": "mocha-plugin-fluture",
"version": "0.0.2",
"description": "A mocha plugin that allows you to return a future for async operations",
"main": "dist/index.js",
"scripts": {
"test": "npm run lint && npm run mocha",
"mocha": "mocha --recursive --require babel-register \"test/**/*.spec.js\"",
"mocha:watch": "mocha --recursive --reporter min --watch --require babel-register \"test/**/*.spec.js\"",
"lint": "eslint \"**/*.js\" && echo Lint passed.",
"coverage": "nyc --cache npm run mocha && nyc report --reporter=lcov",
"build": "babel src -d dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthemsteger/mocha-plugin-fluture.git"
},
"keywords": [
"mocha",
"fluture"
],
"author": "Matt Hemsteger",
"license": "MIT",
"bugs": {
"url": "https://github.com/matthemsteger/mocha-plugin-fluture/issues"
},
"homepage": "https://github.com/matthemsteger/mocha-plugin-fluture#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-promise": "^3.6.0",
"fluture": "^7.2.2",
"mocha": "^4.0.1",
"nyc": "^11.4.1",
"prettier": "^1.9.2",
"proxyquire": "^1.8.0",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0"
}
}