-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
Copy pathpackage.json
36 lines (36 loc) · 890 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
{
"name": "phase-1-practice-dog-ceo",
"version": "1.0.0",
"description": "practice fetching from an api, listening for user events, updating the dom",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learn-co-curriculum/phase-1-practice-dog-ceo.git"
},
"keywords": [
"flatiron school",
"javascript",
"dom",
"fetch",
"api",
"user events"
],
"author": "Flatiron School",
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/learn-co-curriculum/phase-1-practice-dog-ceo/issues"
},
"homepage": "https://github.com/learn-co-curriculum/phase-1-practice-dog-ceo#readme",
"dependencies": {
"chai": "^4.2.0",
"jsdom": "^9.0",
"mocha": "5.2.0",
"mocha-jsdom": "~1.1.0"
}
}