-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.5 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": "fn-intercept",
"version": "1.0.0",
"description": "Intercept function calls to run code before or after, or change arguments.",
"main": "./lib/index.js",
"scripts": {
"test-client": "./node_modules/karma/bin/karma start --single-run",
"test-client-ci": "./node_modules/karma/bin/karma start --browsers Firefox --single-run",
"test-unit": "mocha",
"test": "npm run test-unit && npm run test-client",
"test-ci": "npm run coverage && npm run test-client-ci",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- test/**/*.js -R spec",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "https://github.com/calvinwiebe/fn-intercept.git"
},
"keywords": [
"function",
"test",
"utility",
"intercept",
"mock",
"stub"
],
"author": "Calvin Wiebe <calvin.wiebe@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/calvinwiebe/fn-intercept/issues"
},
"homepage": "https://github.com/calvinwiebe/fn-intercept",
"devDependencies": {
"babel": "^5.8.23",
"babelify": "^6.3.0",
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"karma": "^0.13.9",
"karma-browserify": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.0",
"mocha": "^2.3.2",
"sinon": "^1.16.1"
}
}