-
Notifications
You must be signed in to change notification settings - Fork 7.7k
/
Copy pathpackage.json
34 lines (34 loc) · 906 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
{
"name": "js-task-lister-lite",
"version": "1.0.0",
"description": "One list, many tasks. Create a todo list in vanilla JS",
"main": "src/index.js",
"scripts": {
"test": "mocha --timeout 5000 --reporter spec"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:learn-co-curriculum/js-task-lister-project.git"
},
"keywords": [
"learn",
"flatiron school",
"javascript",
"lab",
"ES6 class syntax"
],
"author": "Flatiron School",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/learn-co-curriculum/js-task-lister-project/issues"
},
"homepage": "https://github.com/learn-co-curriculum/js-task-lister-project",
"dependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"chai": "^4.3.8",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"mocha-multi": "^1.1.3"
}
}