-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
36 lines (36 loc) · 976 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": "git-basics-lab",
"version": "1.0.0",
"description": "## Objectives 1. Practice your GitHub command line skills 2. Create a remote repository on GitHub and connect it with a local folder",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha -R mocha-multi --reporter-options spec=-,json=.results.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/learn-co-curriculum/git-remote-code-along.git"
},
"keywords": [
"git",
"lab"
],
"author": "flatiron school",
"license": "ISC",
"bugs": {
"url": "https://github.com/learn-co-curriculum/git-remote-code-along/issues"
},
"homepage": "https://github.com/learn-co-curriculum/git-remote-code-along#readme",
"devDependencies": {
"chai": "^3.5.0",
"expect": "^1.20.2",
"jsdom": "^9.2.0",
"mocha": "^6.1.4",
"mocha-jsdom": "~1.1.0",
"mocha-multi": "^1.1.0"
},
"dependencies": {
"chai-fs": "^2.0.0"
}
}