-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.03 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
{
"name": "invoke-fn",
"version": "1.0.0",
"description": "A faster alternative to `Function#apply`.",
"main": "index.js",
"scripts": {
"lint": "jshint index.js",
"pretest": "npm run lint",
"test": "mocha -R spec",
"test:cov": "rm -rf ./test/coverage && istanbul cover _mocha --dir ./test/coverage -- -R spec",
"test:rpt": "npm run test:cov && coveralls < ./test/coverage/lcov.info",
"prepublish": "npm test"
},
"keywords": [
"invoke",
"execute",
"call",
"apply",
"function",
"exception",
"error"
],
"license": "MIT",
"author": {
"name": "bubkoo",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gearcase/invoke-fn.git"
},
"bugs": {
"url": "https://github.com/gearcase/invoke-fn/issues"
},
"homepage": "https://github.com/gearcase/invoke-fn#readme",
"devDependencies": {
"jshint": "^2.9.1",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
}
}