UNPKG

1.48 kBJSONView Raw
1{
2 "name": "savor",
3 "version": "0.3.4",
4 "description": "A simple way of adding tests to your Node module",
5 "main": "index.js",
6 "scripts": {
7 "test": "./node_modules/.bin/mocha --recursive test/specs/**/*.js",
8 "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --report lcovonly test/specs/**/*.js",
9 "codeclimate": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --report lcovonly test/specs/**/*.js && ./node_modules/.bin/codeclimate-test-reporter < ./coverage/lcov.info && rm -rf ./coverage",
10 "lint": "./node_modules/.bin/eslint src/**/*.js"
11 },
12 "bin": {
13 "savor": "bin/index.js"
14 },
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/idancali/savor.git"
18 },
19 "author": "I. Dan Calinescu <idancalinescu@gmail.com>",
20 "license": "MIT",
21 "bugs": {
22 "url": "https://github.com/idancali/savor/issues"
23 },
24 "keywords": [
25 "bdd",
26 "tdd",
27 "mocha",
28 "unit-testing",
29 "testing",
30 "qa",
31 "test",
32 "coverage"
33 ],
34 "homepage": "https://github.com/idancali/savor",
35 "dependencies": {
36 "chai": "^3.5.0",
37 "chai-as-promised": "^6.0.0",
38 "codacy-coverage": "^1.1.3",
39 "codeclimate-test-reporter": "^0.4.0",
40 "coveralls": "^2.11.12",
41 "eslint": "^3.2.2",
42 "fs-extra": "^0.30.0",
43 "istanbul": "^1.1.0-alpha.1",
44 "mocha": "^3.0.1",
45 "mocha-lcov-reporter": "^1.2.0",
46 "opn": "^4.0.2",
47 "sinon": "^1.17.5",
48 "tmp": "0.0.28"
49 }
50}