forked from AdaGold/js-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 801 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 801 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
32
33
34
35
36
{
"name": "js-testing",
"version": "1.2.0",
"description": "A Testing exercise in JavaScript adapted from Exercism http://exercism.io/exercises/javascript/anagram/readme",
"main": "anagram.js",
"scripts": {
"test": "jest"
},
"jest": {
"verbose": true,
"testURL": "http://localhost"
},
"repository": {
"type": "git",
"url": "git+ssh://AdaGold/JS-Testing"
},
"keywords": [
"Anagram",
"Whiteboarding",
"Jest",
"Node"
],
"author": "Chris McAnally",
"license": "MIT",
"bugs": {
"url": "https://github.com/AdaGold/JS-Testing/issues"
},
"homepage": "https://github.com/AdaGold/JS-Testing#readme",
"devDependencies": {
"eslint": "^7.14.0",
"eslint-plugin-jest": "^24.1.3"
},
"dependencies": {
"jest": "^26.6.3"
}
}