-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
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
{
"name": "addidtoarray",
"version": "2.0.0",
"description": "Simple Function to add an id to an array (May change later!)",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint ./",
"fix": "eslint --fix ./",
"benchmark": "node benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LetsMelon/addIdToArray.git"
},
"keywords": [
"array",
"id"
],
"author": "Domenic Melcher",
"license": "MIT",
"bugs": {
"url": "https://github.com/LetsMelon/addIdToArray/issues"
},
"homepage": "https://github.com/LetsMelon/addIdToArray#readme",
"dependencies": {},
"devDependencies": {
"benchmark": "^2.1.4",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.0",
"jest": "^26.6.1",
"lodash.isequal": "^4.5.0",
"prettier": "^2.3.0"
},
"files": [
"index.js",
"LICENSE",
"README.md",
"lib/functions.js"
],
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test -- --coverage"
}
}
}