-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 KB
/
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
37
38
39
40
41
42
43
44
45
{
"name": "mars-rover-challenge",
"version": "1.0.0",
"description": "A fun coding challenge",
"main": "./src/index.js",
"scripts": {
"start": "babel-node ./src/index.js",
"pretest": "npm run lint",
"test": "mocha --compilers js:babel-core/register ./src/**/*.test.js",
"lint": "eslint ./src"
},
"engines": {
"node": "^4.3.0",
"npm": "^3.7.5"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"author": "Richard Saunders <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^3.7.1",
"ghooks": "^1.3.2",
"mocha": "^3.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rs-saunders/mars-rover-challenge.git"
},
"bugs": {
"url": "https://github.com/rs-saunders/mars-rover-challenge/issues"
},
"homepage": "https://github.com/rs-saunders/mars-rover-challenge#readme",
"dependencies": {
"lodash": "^4.16.3"
}
}