-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (33 loc) · 873 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
41
42
43
44
45
{
"name": "freecodecamp-coding-interview-prep-javascript",
"version": "1.0.0",
"description": "<h1>freeCodeCamp's Coding Interview Prep Solutions in JavaScript</h1>",
"main": "index.js",
"scripts": {
"test": "npx standard && npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JCPedroza/freeCodeCamp-coding-interview-prep-javascript.git"
},
"keywords": [
"freeCodeCamp",
"project euler",
"rosetta code"
],
"author": "JCPedrozza",
"license": "ISC",
"bugs": {
"url": "https://github.com/JCPedroza/freeCodeCamp-coding-interview-prep-javascript/issues"
},
"homepage": "https://github.com/JCPedroza/freeCodeCamp-coding-interview-prep-javascript#readme",
"devDependencies": {
"jest": "^27.2.5",
"standard": "^16.0.4"
},
"standard": {
"env": [
"jest"
]
}
}