forked from Del-chan/javascript-demo-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 680 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 680 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
{
"name": "javascript-demo-project",
"version": "1.0.0",
"description": "Basic JavaScript project for demonstration of programming concepts",
"main": "app/library.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha tests/tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Philipeano/javascript-demo-project.git"
},
"author": "Philip Newman",
"license": "MIT",
"bugs": {
"url": "https://github.com/Philipeano/javascript-demo-project/issues"
},
"homepage": "https://github.com/Philipeano/javascript-demo-project#readme",
"dependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
}
}