-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.12 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": "angular-template-cache",
"version": "1.3.3",
"description": "cli tool to put your html files into angular's $templateCache service",
"main": "index.js",
"scripts": {
"test:unit": "node_modules/.bin/mocha test",
"test:it": "node_modules/.bin/mocha -s 1000 test-it",
"test": "npm run test:unit && npm run test:it",
"lint": "node_modules/.bin/jshint lib test"
},
"bin": {
"nghtml2js": "bin/cmd.js"
},
"keywords": [
"angular",
"ng",
"templatecache",
"html2js"
],
"author": "Pawel Chudzik",
"homepage": "https://github.com/pchudzik/angular-template-cache",
"repository": {
"type": "git",
"url": "git://github.com/pchudzik/angular-template-cache.git"
},
"bugs": {
"url": "https://github.com/pchudzik/angular-template-cache/issues"
},
"license": "MIT",
"dependencies": {
"bluebird": "3.5.3",
"commander": "2.19.0",
"glob": "7.1.3",
"html-minifier": "3.5.21",
"lodash": "4.17.19"
},
"devDependencies": {
"chai": "4.2.0",
"jshint": "2.10.1",
"mocha": "5.2.0",
"proxyquire": "2.1.0",
"testdouble": "3.10.0"
}
}