-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 866 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 866 Bytes
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
{
"name": "programming_fundamentals_005",
"version": "1.0.0",
"description": "In this exercise we'll be creating some helpful extensions to the `Object` object in JavaScript, inspired by the [Sugar JavaScript library](https://sugarjs.com/docs/#/Object).",
"main": "index.js",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/techreturners/programming_fundamentals_005.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/techreturners/programming_fundamentals_005/issues"
},
"homepage": "https://github.com/techreturners/programming_fundamentals_005#readme",
"dependencies": {
"jest": "^25.2.7"
},
"devDependencies": {
"eslint": "^6.8.0"
}
}