-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
90 lines (90 loc) · 3.15 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
87
88
89
90
{
"name": "goponents",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mwagz/tangoe-shared.git"
},
"author": "Tangoe GoMobile",
"license": "MIT",
"scripts": {
"ng": "./node_modules/.bin/ng",
"start": "./node_modules/.bin/ng serve",
"build": "./node_modules/.bin/ng build",
"test": "npm run test_lib",
"lint": "./node_modules/.bin/ng lint",
"e2e": "./node_modules/.bin/ng e2e",
"app": "./node_modules/.bin/ng build go-tester --prod",
"build_lib": "./node_modules/.bin/ng build go-lib",
"build_lib_scss": "chmod +x ./sass-port.sh && ./sass-port.sh",
"test_lib": "./node_modules/.bin/ng test go-lib",
"test_lib:browse": "npm run test_lib -- --reporters=kjhtml --browsers=Chrome",
"test_lib:detailed": "npm run test_lib -- --reporters=spec",
"test_lib:coverage": "npm run test_lib -- --code-coverage",
"test_lib:ci": "npm run test_lib:coverage -- --watch=false",
"test_app": "./node_modules/.bin/ng test go-tester",
"npm_pack": "cd dist/go-lib && npm pack",
"package": "npm run build_lib && npm run npm_pack",
"publish": "npm run build_lib && cd dist/go-lib && npm publish",
"publish_local": "npm run package && node ./local_install.js",
"sass-lint": "./node_modules/.bin/sass-lint -c .sass-lint.yml",
"style_guide": "./node_modules/.bin/ng serve --project=go-style-guide",
"style_guide_publish": "ng build --prod --project=go-style-guide",
"tester": "./node_modules/.bin/ng serve --project=go-tester",
"postinstall": "ngcc"
},
"private": true,
"engines": {
"npm": "^6.9.0",
"node": "^10.16.3"
},
"dependencies": {
"@angular/animations": "~9.1.13",
"@angular/common": "~9.1.13",
"@angular/compiler": "^9.1.13",
"@angular/core": "~9.1.13",
"@angular/forms": "~9.1.13",
"@angular/platform-browser": "~9.1.13",
"@angular/platform-browser-dynamic": "~9.1.13",
"@angular/router": "~9.1.13",
"@ng-select/ng-select": "~3.7.3",
"@tinymce/tinymce-angular": "^4.2.3",
"classlist.js": "^1.1.20150312",
"core-js": "^2.5.4",
"faker": "4.1.0",
"highlight.js": "^9.13.1",
"ngx-highlightjs": "^3.0.1",
"npm": "^6.10.1",
"rxjs": "~6.5.5",
"tinymce": "^5.8.0",
"tslib": "^1.10.0",
"web-animations-js": "^2.3.2",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.15",
"@angular-devkit/build-ng-packagr": "~0.901.15",
"@angular/cli": "~9.1.15",
"@angular/compiler-cli": "^9.1.13",
"@angular/language-service": "~9.1.13",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"jasmine-core": "3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.6.0",
"karma-spec-reporter": "0.0.32",
"ng-packagr": "^9.0.0",
"protractor": "~5.4.0",
"sass-lint": "^1.13.1",
"ts-node": "~7.0.0",
"tslint": "^5.16.0",
"tslint-angular": "^3.0.2",
"typescript": "~3.8.3"
}
}