This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@angularclass/dope-docs",
"version": "0.9.9",
"description": "Document and styleguide generator for your Angular projects",
"main": "dope-docs.js",
"jsnext:main": "index.js",
"module": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "rimraf ./tmp/mocha-webpack && mocha-webpack --opts 'mocha.opts'",
"build:esm": "ntsc -p tsconfig.esm.json",
"build:cli": "ntsc -p tsconfig.cli.json",
"build:bundle": "webpack --progress --colors",
"build:aot": "ngc",
"build": "rimraf build && npm run build:esm && npm run build:bundle && npm run build:aot",
"copy": "cp package.json dist && cp README.md dist && cp src/webpack/index.html dist/index.html && cp -R src/assets dist",
"package": "rm -rf build && npm run build:esm && npm run build:bundle && npm run build:cli && npm run copy",
"tags": "git add . && git push origin master && git push --tags",
"bump": "npm version patch -m\"upgrade to %s\"",
"release": "npm run bump && npm run tags && npm run package && npm publish dist/ --access public"
},
"bugs": "https://github.com/AngularClass/dope-docs/issues",
"repository": {
"url": "https://github.com/AngularClass/dope-docs",
"type": "git"
},
"author": "Scott Moss <scott@angularclass.com>",
"bin": {
"acdocs": "./cli/cli.js"
},
"license": "MIT",
"devDependencies": {
"@angular/common": "^4.1.3",
"@angular/compiler": "^4.1.3",
"@angular/compiler-cli": "^4.1.3",
"@angular/core": "^4.1.3",
"@angular/platform-browser": "^4.1.3",
"@angular/platform-browser-dynamic": "^4.1.3",
"@angular/platform-server": "^4.1.3",
"@types/chai": "^3.5.2",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.18",
"@types/sinon": "^2.2.2",
"@types/webpack": "^2.2.15",
"@types/webpack-dev-server": "^2.4.0",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.3",
"core-js": "^2.4.1",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^10.1.0",
"mocha": "^3.4.1",
"mocha-webpack": "^0.7.0",
"ntypescript": "latest",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"rxjs": "^5.4.0",
"source-map-support": "^0.4.15",
"typescript": "^2.3.2",
"webpack": "^2.6.0",
"webpack-node-externals": "^1.6.0",
"zone.js": "^0.8.10"
},
"dependencies": {
"@angular/animations": "^4.1.3",
"@angular/forms": "^4.1.3",
"@angular/router": "^4.1.3",
"@types/chalk": "^0.4.31",
"@types/commander": "^2.9.0",
"@types/html-webpack-plugin": "^2.28.0",
"@types/marked": "^0.0.28",
"angular-prism": "^0.1.20",
"angular2-highlight-js": "^5.0.0",
"chalk": "^1.1.3",
"commander": "^2.9.0",
"css-loader": "^0.28.1",
"lodash.flatten": "^4.4.0",
"marked": "^0.3.6",
"postcss-loader": "^2.0.5",
"prismjs": "^1.6.0",
"sass-loader": "^6.0.5",
"shebang-loader": "^0.0.1",
"slugify": "^1.1.0",
"to-string-loader": "^1.1.5",
"webpack-dev-server": "^2.4.5"
}
}