-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
36 lines (36 loc) · 925 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
{
"name": "performance-analysis",
"version": "1.0.0",
"description": "Performance analysis repo for javascript function vs for loop vs for each vs lodash",
"main": "test.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"t:l": "node test_large_data_set.js",
"t:s": "node test_small_data_set.js",
"seed": "node generate_data.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dg92/Performance-analysis-es6.git"
},
"keywords": [
"Javascript",
"Lodash",
"es6",
"function",
"map",
"reduce",
"filter",
"find",
"performance"
],
"author": "Deepak gupta (ideepak.jsd@gmail.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/dg92/Performance-analysis-es6/issues"
},
"homepage": "https://github.com/dg92/Performance-analysis-es6#readme",
"dependencies": {
"lodash": "^4.17.10"
}
}