-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.48 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
46
47
48
49
50
51
52
53
{
"name": "typescript-tdd-exercises",
"version": "1.0.0",
"description": "A project to learn TDD in TypeScript",
"main": "index.js",
"scripts": {
"preinstall": "npm install -g typescript mocha tsd@next karma-cli grunt-cli",
"postinstall": "tsd reinstall --save && grunt test",
"pree4": "grunt build",
"e4": "node ./out/build.js",
"ts": "grunt ts",
"test": "grunt test",
"watch": "grunt watch"
},
"repository": {
"type": "git",
"url": "https://github.com/michikono/typescript-tdd-exercises.git"
},
"keywords": [
"typescript",
"tdd",
"testing"
],
"author": "Michi Kono <[email protected]> (https://github.com/michikono)",
"license": "MIT",
"bugs": {
"url": "https://github.com/michikono/typescript-tdd-exercises/issues"
},
"homepage": "https://github.com/michikono/typescript-tdd-exercises",
"devDependencies": {
"blanket": "^1.1.6",
"growl": "^1.8.1",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-istanbul": "^0.5.0",
"grunt-istanbul-coverage": "^0.1.1",
"grunt-mocha-test": "^0.12.7",
"grunt-notify": "^0.4.1",
"grunt-text-replace": "^0.4.0",
"grunt-ts": "^3.0.0",
"karma-mocha": "^0.1.10",
"load-grunt-config": "^0.16.0",
"mocha": "^2.2.4",
"sinon": "^1.12.2",
"source-map-support": "^0.2.10",
"time-grunt": "^1.1.0"
},
"dependencies": {
"blessed": "^0.1.0"
}
}