-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.37 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
{
"name": "ng-typeview",
"version": "0.0.41",
"description": "library to enable type-checking of angular views when using typescript",
"keywords": [
"angularjs",
"angular",
"typescript"
],
"homepage": "https://github.com/emmanueltouzery/ng-typeview",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"license": "MIT",
"author": "Emmanuel Touzery",
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/emmanueltouzery/ng-typeview.git"
},
"bugs": {
"url": "https://github.com/emmanueltouzery/ng-typeview/issues"
},
"dependencies": {
"@types/glob": "5.0.30",
"@types/htmlparser2": "3.7.29",
"@types/node": "12.7.3",
"glob": "7.1.2",
"htmlparser2": "3.9.2",
"typescript": "3.1.1",
"parsimmon": "1.4.0",
"@types/parsimmon": "1.3.0",
"prelude-ts": "0.8.3"
},
"devDependencies": {
"mocha": "5.2.0",
"@types/mocha": "5.2.5",
"typedoc": "0.7.1"
},
"scripts": {
"test": "tsc && ./node_modules/mocha/bin/mocha ./dist/test/*.js",
"clean": "rm -Rf ./dist",
"docgen": "./node_modules/typedoc/bin/typedoc --mode file --out apidoc --excludePrivate --excludeExternals --excludeNotExported --ignoreCompilerErrors src/index.ts"
}
}