-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.15 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.15 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
{
"name": "kangaroo-ui-root",
"version": "1.0.0",
"description": "Root package for the kangaroo-ui monorepo",
"license": "Apache-2.0",
"private": true,
"author": {
"name": "Michael Krotscheck",
"email": "krotscheck@gmail.com",
"url": "https://krotscheck.net/"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.6.5",
"@angular-devkit/build-ng-packagr": "^0.6.5",
"@angular/cli": "^6.0.5",
"@angular/compiler": "^6.0.3",
"@angular/compiler-cli": "^6.0.3",
"@angular/core": "~6.0.3",
"@commitlint/cli": "~6.2.0",
"@commitlint/config-conventional": "~6.1.2",
"@types/jasmine": "~2.8.7",
"@types/karma": "~1.7.3",
"@types/node": "~8.9.0",
"chokidar-cli": "^1.2.0",
"codelyzer": "^4.3.0",
"commitizen": "~2.9.6",
"cz-conventional-changelog": "~2.1.0",
"jasmine": "^3.1.0",
"jasmine-core": "^2.99",
"jasmine-spec-reporter": "^4.2.1",
"karma": "~2.0.2",
"karma-browserstack-launcher": "~1.3.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-jasmine": "~1.1.2",
"karma-junit-reporter": "~1.2.0",
"karma-spec-reporter": "~0.0.32",
"karma-typescript": "~3.0.12",
"karma-webdriver-launcher": "~1.0.5",
"ng-packagr": "~3.0.0",
"nsp": "~3.2.1",
"protractor": "~5.3.2",
"rimraf": "^2.6.2",
"rxjs-tslint": "^0.1.4",
"ts-node": "~6.0.3",
"tslint": "^5.10.0",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "~2.7.0",
"wsrun": "3.0.0"
},
"scripts": {
"cz": "git-cz",
"prelint": "git log -1 --pretty=%B | commitlint",
"lint.ci": "wsrun lint.ci",
"lint": "wsrun lint --serial",
"nsp": "wsrun nsp --exclude @kangaroo/devkit --collect-output",
"build": "wsrun build --stages --fast-exit --collect-output",
"pretest": "jasmine",
"test": "wsrun test.ci --fast-exit --serial",
"clean": "rimraf node_modules 'packages/*/(node_modules|*.tgz|lib|dist)'",
"pack": "wsrun pack",
"start": "wsrun start"
},
"workspaces": [
"packages/*"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}