forked from codeschool-projects/HelloCodeSchoolProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·35 lines (35 loc) · 759 Bytes
/
package.json
File metadata and controls
executable file
·35 lines (35 loc) · 759 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
25
26
27
28
29
30
31
32
33
34
35
{
"name": "hello-codeschool-project",
"version": "1.0.0",
"description": "Sample Code School Project",
"main": "index.js",
"scripts": {
"test": "mocha test/"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"jsdom": "^9.2.1",
"mocha": "^2.5.3"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tinywizard/HelloCodeSchoolProject.git"
},
"keywords": [
"codeschool",
"tutorials"
],
"bugs": {
"url": "https://github.com/tinywizard/HelloCodeSchoolProject/issues"
},
"homepage": "https://github.com/tinywizard/HelloCodeSchoolProject#readme",
"dependencies": {
"chai": "^3.5.0",
"jsdom": "^9.9.1"
}
}