-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.14 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "scootloops",
"version": "1.2.1",
"description": "A collection of loops to use easily in your code.",
"main": "./src/index.js",
"scripts": {
"test": "jest",
"build-babel": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PxPerfectMike/scootloops.git"
},
"keywords": [
"loops",
"iteration",
"JavaScript",
"utility",
"helpers",
"loop-methods",
"iteration-methods",
"for-loop",
"increment",
"decriment",
"looping",
"looping-methods",
"filter",
"map",
"reduce",
"forEach",
"every",
"some",
"find",
"findIndex",
"includes",
"indexOf",
"lastIndexOf",
"keys",
"values",
"entries",
"developer-tools",
"developer-experience",
"developer-friendly"
],
"author": "Michael Baker",
"license": "MIT",
"bugs": {
"url": "https://github.com/PxPerfectMike/scootloops/issues"
},
"homepage": "https://github.com/PxPerfectMike/scootloops#readme",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0"
},
"dependencies": {
"jest": "^29.4.1"
}
}