-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.17 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.17 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "ampgular",
"version": "1.0.0",
"private": true,
"description": "Tool",
"bin": {
"amp": "./bin/amp",
"devkit-admin": "./bin/devkit-admin"
},
"scripts": {
"admin": "node ./bin/devkit-admin",
"build": "npm run admin -- build",
"lint": "npm run admin -- lint",
"fix": "npm run admin -- lint --fix",
"templates": "node ./bin/devkit-admin templates",
"test": "node ./bin/devkit-admin test",
"validate": "node ./bin/devkit-admin validate",
"validate-commits": "./bin/devkit-admin validate-commits"
},
"repository": {
"type": "git",
"url": "https://github.com/ampgular/ampgular.git"
},
"engines": {
"node": ">=10.9.0 <11.0.0",
"yarn": ">=1.9.0 <2.0.0"
},
"author": "Angular Authors and Ampgular",
"license": "MIT",
"bugs": {
"url": "https://github.com/ampgular/ampgular/issues"
},
"homepage": "https://github.com/ampgular/ampgular",
"workspaces": {
"packages": [
"packages/ampgular/*",
"packages/angular_devkit/*"
]
},
"dependencies": {
"@angular-devkit/architect": "^0.13.6",
"@angular-devkit/core": "^7.3.6",
"@angular-devkit/schematics": "^7.3.6",
"@schematics/angular": "^7.3.8",
"@types/debug": "^4.1.2",
"@types/node-fetch": "^2.1.6",
"@types/progress": "^2.0.3",
"debug": "^4.1.1",
"glob": "^7.0.3",
"node-fetch": "^2.2.0",
"quicktype-core": "^6.0.15",
"symbol-observable": "^1.2.0",
"temp": "^0.9.0",
"tslint": "^5.13.1",
"typescript": "3.2.4"
},
"devDependencies": {
"@bazel/karma": "~0.26.0",
"@bazel/typescript": "~0.26.0",
"@ngtools/json-schema": "^1.1.0",
"@types/copy-webpack-plugin": "^4.4.1",
"@types/express": "^4.16.0",
"@types/glob": "^7.0.0",
"@types/inquirer": "^0.0.44",
"@types/istanbul": "^0.4.30",
"@types/jasmine": "^3.3.8",
"@types/loader-utils": "^1.1.3",
"@types/minimist": "^1.2.0",
"@types/node": "10.9.4",
"@types/request": "^2.47.1",
"@types/semver": "^5.5.0",
"@types/source-map": "0.5.2",
"@types/webpack": "^4.4.11",
"@types/webpack-dev-server": "^3.1.0",
"@types/webpack-sources": "^0.1.5",
"@yarnpkg/lockfile": "1.1.0",
"ajv": "6.10.0",
"common-tags": "^1.8.0",
"conventional-changelog": "^1.1.0",
"conventional-commits-parser": "^3.0.0",
"gh-got": "^8.0.1",
"git-raw-commits": "^2.0.0",
"husky": "^1.3.0",
"istanbul": "^0.4.5",
"jasmine": "^3.3.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "~4.0.1",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"license-checker": "^20.1.0",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"npm-registry-client": "8.6.0",
"pacote": "^9.2.3",
"pidtree": "^0.3.0",
"pidusage": "^2.0.17",
"rxjs": "~6.3.3",
"semver": "^5.3.0",
"source-map": "^0.5.6",
"source-map-support": "^0.5.0",
"spdx-satisfies": "^4.0.0",
"tar": "^4.4.4",
"through2": "^2.0.3",
"tree-kill": "^1.2.0",
"ts-node": "^5.0.0",
"tslint-no-circular-imports": "^0.6.0",
"tslint-sonarts": "^1.7.0"
},
"husky": {
"hooks": {
"pre-push": "node ./bin/devkit-admin hooks/pre-push"
}
}
}