forked from WearyMonkey/ngtemplate-loader
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 986 Bytes
/
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
{
"name": "ngtemplate-loader",
"version": "1.3.1",
"description": "Include AngularJS templates in the Webpack bundle and preload the template cache.",
"main": "index.js",
"scripts": {
"test": "standard && webpack --config=test/webpack.config.js"
},
"repository": {
"type": "git",
"url": "git://github.com/WearyMonkey/ngtemplate-loader.git"
},
"keywords": [
"webpack",
"angularjs",
"loader"
],
"author": "WearyMonkey",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"standard": {
"ignore": [
"test/**/*"
],
"globals": [
"angular"
]
},
"peerDependencies": {
"webpack": "^2.2.0"
},
"dependencies": {
"js-string-escape": "^1.0.1",
"jsesc": "^0.5.0",
"loader-utils": "~0.2.6"
},
"devDependencies": {
"html-loader": "^0.2.2",
"raw-loader": "^0.5.1",
"standard": "^10.0.1",
"webpack": "^2.3.3"
}
}