-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 920 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
{
"name": "javascript-testing-beginners-course",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"precommit": "npm test",
"prepush": "npm test",
"test": "mocha",
"test:watch": "mocha --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarcL/javascript-testing-beginners-course.git"
},
"keywords": [],
"author": "Marc Littlemore <[email protected]> (http://www.marclittlemore.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MarcL/javascript-testing-beginners-course/issues"
},
"homepage": "https://github.com/MarcL/javascript-testing-beginners-course#readme",
"devDependencies": {
"babel-preset-env": "~1.6.0",
"babel-register": "~6.24.1",
"chai": "~4.1.1",
"husky": "~0.14.3",
"mocha": "~3.5.0",
"sinon": "~3.2.1"
},
"dependencies": {
"request": "~2.81.0"
}
}