forked from TypeStrong/typedoc-default-themes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.56 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
{
"name": "ui-router-typedoc-themes",
"description": "UIRouter customized themes for TypeDoc.",
"version": "1.0.2",
"homepage": "http://typedoc.org",
"main": "bin/plugin.js",
"files": [
"bin",
"LICENSE"
],
"scripts": {
"clean": "rm -rf bin",
"grunt": "grunt",
"build": "npm run clean && npm run grunt && npm run copyfiles",
"copyfiles": "npm run copycss && npm run copyreset && npm run copymdrn",
"copycss": "cp src/default/assets/css/uirouter.css bin/default/assets/css",
"copyreset": "cp src/default/assets/js/reset.js bin/default/assets/js",
"copymdrn": "cp src/default/assets/js/modernizr.js bin/default/assets/js",
"prepublish": "npm run build"
},
"author": {
"name": "Sebastian Lenz",
"url": "http://www.sebastian-lenz.de/"
},
"repository": {
"type": "git",
"url": "git://github.com/ui-router/typedoc-themes.git"
},
"bugs": {
"url": "https://github.com/ui-router/typedoc-themes/issues"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/sebastian-lenz/TypeDoc/blob/master/LICENSE"
}
],
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-autoprefixer": "^3.0.4",
"grunt-cli": "^1.2.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-sass": "^1.0.0",
"grunt-contrib-uglify": "^1.0.1",
"grunt-contrib-watch": "~1.0.0",
"grunt-string-replace": "^1.0.0",
"grunt-ts": "^5.5.1",
"typescript": "1.8.10"
},
"keywords": [
"typescript",
"documentation",
"generator"
]
}