This repository has been archived by the owner on May 26, 2023. It is now read-only.
forked from c0bra/grunt-ngdocs
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "grunt-uidocs-generator",
"version": "0.7.0",
"description": "grunt plugin for angularjs documentation",
"main": "tasks",
"repository": {
"type": "git",
"url": "https://github.com/angular-ui/grunt-uidocs-generator.git"
},
"author": "UI Docs Team",
"homepage": "https://github.com/angular-ui/grunt-uidocs-generator",
"bugs": "https://github.com/angular-ui/grunt-uidocs-generator/issues",
"scripts": {
"build": "grunt clean uidocs-generator",
"start": "grunt clean uidocs-generator connect",
"test": "grunt test",
"preversion": "npm test",
"version": "npm run build && grunt conventionalChangelog && git add -f docs/ CHANGELOG.md",
"postversion": "git push && git push --tags && grunt clean"
},
"keywords": [
"gruntplugin",
"angular",
"grunt",
"ngdocs",
"uidocs",
"documention"
],
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"bootstrap": "^3.4.1",
"lodash": "^4.17.10",
"marked": "^0.4.0",
"shelljs": "^0.8.2",
"upath": "^1.1.0"
},
"peerDependencies": {
"angular": ">=1.6.0",
"angular-animate": ">=1.6.0",
"grunt": ">=0.4.0"
},
"devDependencies": {
"angular": "^1.7.2",
"angular-animate": "^1.7.2",
"grunt": "^1.0.3",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-jasmine-node": "^0.3.1",
"jasmine-node": "^1.15.0"
}
}