-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.53 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": "fuse-box-ng-template-plugin",
"version": "1.0.4",
"description": "Includes your AngularJS templates into the fuse-box bundle",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/TobiasTimm/fuse-box-ng-template-plugin.git",
"bugs": {
"url": "https://github.com/TobiasTimm/fuse-box-ng-template-plugin/issues"
},
"homepage": "https://github.com/TobiasTimm/fuse-box-ng-template-plugin#readme",
"author": {
"name": "Tobias Timm",
"email": "[email protected]",
"url": "https://twitter.com/TbsTimm"
},
"license": "MIT",
"scripts": {
"build": "npm run clean && npm run lint && tsc",
"clean": "rimraf dist",
"lint": "tslint lib/*.ts",
"test": "jest",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"fusebox",
"fuse-box",
"angular1",
"angular.js",
"angularjs",
"ng",
"$templateCache",
"html",
"plugin",
"angular",
"template",
"run"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(.*(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@types/jest": "^22.1.3",
"@types/node": "^9.4.6",
"fuse-box": "^3.4.0",
"jest": "^22.3.0",
"rimraf": "^2.6.2",
"ts-jest": "^22.0.4",
"tslint": "^5.9.1",
"tslint-clean-code": "^0.2.3",
"tslint-eslint-rules": "^5.0.0",
"typescript": "^2.7.2"
}
}