-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 830 Bytes
/
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
{
"name": "function-from-file",
"version": "1.0.2",
"description": "Get one or more functions from given file. Extract also private functions, sync or async. Great for unit testing.",
"main": "index.js",
"author": "Johnny Seyd <johnnyseyd@gmail.com>",
"license": "MIT",
"repository": "seyd/function-from-file",
"keywords": [
"function",
"functions",
"extract",
"private",
"unit test",
"unit tests",
"unittest",
"testing",
"get function",
"extract function",
"parse function",
"find function"
],
"files": [
"LICENSE",
"README.md",
"index.js",
"lib/"
],
"dependencies": {
"function-extractor": "0.0.5"
},
"devDependencies": {
"fs": "0.0.1-security",
"jasmine": "^2.5.3"
},
"scripts": {
"test": "jasmine",
"test-cov": "istanbul cover node_modules/jasmine/bin/jasmine.js"
}
}