forked from sergeyt/karma-typescript-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 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
42
43
44
45
{
"name": "karma-typescript-preprocessor",
"version": "0.0.16",
"description": "A karma-runner plugin to compile typescript files on the fly.",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:sergeyt/karma-typescript-preprocessor.git"
},
"keywords": [
"karma-plugin",
"karma-preprocessor",
"typescript"
],
"author": "Sergey Todyshev <stodyshev@gmail.com>",
"contributors": [
"Sergey Todyshev <stodyshev@gmail.com>",
"James Whitney <james@whitney.io>",
"Keats <balthek@gmail.com>",
"Anthony White <awhite@dataxu.com>"
],
"dependencies": {
"lodash": "~3.5.0",
"typescript-compiler": "~1.4.1"
},
"devDependencies": {
"typescript": "^1.4",
"grunt": "~0.4",
"grunt-contrib-jshint": "~0.11",
"grunt-npm": "~0.0.2",
"grunt-bump": "~0.3.0",
"grunt-auto-release": "~0.0.6",
"grunt-coffeelint": "0.0.13",
"grunt-cli": "~0.1",
"karma": "~0.12",
"karma-jasmine": "~0.3",
"karma-chrome-launcher": "~0.1",
"karma-phantomjs-launcher": "~0.1"
},
"scripts": {
"lint": "grunt lint",
"test": "grunt test"
}
}