-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
package.json
35 lines (35 loc) · 911 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
{
"name": "phase-1-practice-interacting-with-the-dom",
"version": "1.0.0",
"description": "\"Interacting with the DOM using Events\"",
"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-interacting-with-the-dom.git"
},
"keywords": [
"flatiron school",
"javascript",
"dom",
"events",
"timeout"
],
"author": "Flatiron School",
"license": "CC-BY-NC-SA-4.0",
"bugs": {
"url": "https://github.com/learn-co-curriculum/phase-1-practice-interacting-with-the-dom/issues"
},
"homepage": "https://github.com/learn-co-curriculum/phase-1-practice-interacting-with-the-dom#readme",
"dependencies": {
"chai": "^4.2.0",
"jsdom": "^9.0",
"mocha": "5.2.0",
"mocha-jsdom": "~1.1.0"
}
}