forked from TheLarkInn/angular2-template-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "angular2-template-loader",
"version": "0.6.2",
"description": "Angular webpack loader that inlines your angular templates and stylesheets into angular components. ",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"coverage": "istanbul cover _mocha -- -R spec",
"preversion": "npm test",
"version": "git add -A",
"postversion": "git push && git push --tags",
"release:patch": "npm version patch && git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheLarkInn/angular2-template-loader.git"
},
"keywords": [
"angular",
"webpack",
"angularjs",
"loader",
"angular2-loader"
],
"author": "Sean Larkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheLarkInn/angular2-template-loader/issues"
},
"homepage": "https://github.com/TheLarkInn/angular2-template-loader#readme",
"devDependencies": {
"codecov": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.4",
"should": "^13.2.1"
},
"dependencies": {
"loader-utils": "^1.1.0"
}
}