forked from TudorMaiereanu/JUB-TDD-kata-marsrover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 765 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
35
{
"name": "JUB-kata-marsrover",
"version": "1.0.0",
"description": "Move a rover on a grid with obstacles",
"scripts": {
"test": "gulp test",
"sample": "node dist/sample",
"postinstall": "typings install"
},
"keywords": [
"TDD",
"typescript",
"javascript",
"algorithm",
"rover",
"mars"
],
"devDependencies": {
"del": "2.2.0",
"gulp": "3.9.1",
"gulp-concat": "2.6.0",
"gulp-jasmine": "^2.4.0",
"gulp-sourcemaps": "1.6.0",
"gulp-tslint": "^6.1.1",
"gulp-typescript": "2.13.4",
"tslint": "^3.15.1",
"typescript": "^1.8.10",
"typings": "^1.3.3"
},
"author": "Tudor Maiereanu <[email protected]>",
"license": "ISC",
"dependencies": {
"prompt": "^1.0.0"
}
}