-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.13 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.13 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
{
"name": "javascript-coding-challenges",
"version": "0.2.0",
"description": "My JS challenges with how I resolve them",
"main": "index.js",
"scripts": {
"test-all": "jest --passWithNoTests --json --outputFile=result.json --testLocationInResults",
"test-customs": "jest --passWithNoTests -o",
"binary-tree": "jest binary-tree/__tests__/binary-tree.spec.js",
"fizzbuzz": "jest fizzbuzz/__tests__/fizzbuzz.spec.js",
"pigeons": "jest pigeons/__tests__/pigeons.spec.js",
"prime-number": "jest prime-number/__tests__/isPrime.spec.js",
"randsum": "jest randsum/__tests__/randsum.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/403-html/javascript-coding-challenges.git"
},
"keywords": [
"challenges"
],
"author": "Tymoteusz '403-html' Stępień",
"license": "MIT",
"bugs": {
"url": "https://github.com/403-html/javascript-coding-challenges/issues"
},
"homepage": "https://github.com/403-html/javascript-coding-challenges#readme",
"devDependencies": {
"jest": "^26.6.3"
}
}