-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "typescript-starter",
"version": "1.0.0",
"description": "A basic seed project to run typescript",
"main": "index.js",
"scripts": {
"preinstall": "npm install -g typescript mocha tsd@next karma-cli supervisor grunt-cli",
"postinstall": "tsd reinstall --save",
"ts": "grunt ts",
"test": "grunt test",
"watch": "grunt watch"
},
"repository": {
"type": "git",
"url": "https://github.com/michikono/typescript-starter.git"
},
"keywords": [
"typescript"
],
"author": "Michi Kono <[email protected]> (https://github.com/michikono)",
"license": "MIT",
"bugs": {
"url": "https://github.com/michikono/typescript-starter/issues"
},
"homepage": "https://github.com/michikono/typescript-starter",
"devDependencies": {
"growl": "^1.8.1",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.12.7",
"grunt-notify": "^0.4.1",
"grunt-ts": "^3.0.0",
"karma-mocha": "^0.1.10",
"load-grunt-config": "^0.16.0",
"mocha": "^1.21.5",
"sinomocha": "^0.2.3",
"sinon": "^1.12.2",
"time-grunt": "^1.1.0"
}
}