forked from turingschool-examples/testing-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 716 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 716 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
{
"name": "testing-javascript",
"version": "1.0.0",
"description": "A small little project for learning to test JavaScript",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "echo \"Please run the tests from the browser.\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/turingschool-examples/testing-javascript.git"
},
"author": "Steve Kinney",
"license": "MIT",
"bugs": {
"url": "https://github.com/turingschool-examples/testing-javascript/issues"
},
"homepage": "https://github.com/turingschool-examples/testing-javascript#readme",
"dependencies": {
"express": "^4.14.0",
"express-livereload": "0.0.24"
}
}