This repository was archived by the owner on Nov 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "karma-typescript-angular2-transform",
"version": "1.0.2",
"description": "Plugin for transforming template and style urls in Angular2 components.",
"main": "dist/transform.js",
"keywords": [
"angular2",
"karma-typescript",
"typescript"
],
"author": "monounity",
"contributors": [
"erikbarke"
],
"repository": {
"type": "git",
"url": "https://github.com/monounity/karma-typescript-angular2-transform.git"
},
"license": "MIT",
"scripts": {
"build": "tsc --rootDir ./src",
"build:ci": "tsc --noEmit --rootDir ./src",
"build:watch": "tsc -w --rootDir ./src",
"lint": "tslint --project tsconfig.json",
"test": "nyc --require ts-node/register tape src/test/*.spec.ts | faucet"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.spec.ts"
],
"reporter": [
"html"
],
"temp-directory": "./coverage/.nyc_output"
},
"dependencies": {
"acorn": "^4.0.11",
"log4js": "^1.1.1",
"magic-string": "^0.19.0"
},
"devDependencies": {
"@angular/core": "^2.4.8",
"@types/acorn": "^4.0.0",
"@types/karma": "^0.13.33",
"@types/lodash": "^4.14.55",
"@types/log4js": "0.0.32",
"@types/node": "^7.0.5",
"@types/sinon": "^2.1.2",
"@types/tape": "^4.2.29",
"faucet": "0.0.1",
"karma-typescript": "latest",
"nyc": "^11.1.0",
"rxjs": "^5.2.0",
"sinon": "^2.1.0",
"tape": "^4.6.3",
"ts-node": "^3.3.0",
"tslint": "^4.4.2",
"tslint-eslint-rules": "^3.3.0",
"typescript": "^2.2.1",
"zone.js": "^0.7.7"
}
}