forked from Teradata/covalent-text-editor-nightly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.93 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "@covalent/text-editor",
"version": "2.1.0",
"private": false,
"description": "Covalent text and markdown editor component for Angular based on SimpleMDE",
"keywords": [
"angular",
"covalent",
"simplemde",
"markdown",
"text",
"editor",
"electron",
"reusable"
],
"scripts": {
"e2e": "protractor",
"e2e-test": "protractor ./protractor.conf.js",
"lint": "tslint --format codeFrame -c ./tslint.json \"./src/**/*.ts\" -e \"./src/**/typings.d.ts\" -e \"./src/environments/**\"",
"reinstall": "rm -rf node_modules tmp deploy dist && npm i",
"test": "rm -rf ./dist && ng build && ng test --code-coverage --watch=false",
"coverage-win": "start chrome ./coverage/index.html",
"coverage-mac": "open -a \"Google Chrome\" coverage/index.html",
"coveralls": "cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"bump-dev": "gulp bump-version",
"bump-patch": "gulp bump-version --ver patch",
"bump-minor": "gulp bump-version --ver minor",
"bump-major": "gulp bump-version --ver major",
"aot": "./node_modules/.bin/ngc -p deploy/platform/tsconfig-aot.json && tsc -p src/platform/tsconfig-aot.json",
"build": "bash scripts/build-release",
"npm-publish": "npm run build && bash scripts/npm-publish",
"nightly-publish": "npm run build && bash scripts/nightly-publish",
"ghpages-deploy": "./node_modules/.bin/ng build --base-href /covalent-editor/ --aot -prod --sourcemap=false && bash scripts/ghpages-deploy",
"start-release": "bash scripts/start-release",
"finish-release": "bash scripts/finish-release"
},
"engines": {
"node": ">=8.9",
"npm": ">=5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/teradata/covalent-text-editor.git"
},
"bugs": {
"url": "https://github.com/Teradata/covalent-text-editor/issues"
},
"license": "MIT",
"author": "Teradata UX",
"contributors": [
"Kyle Ledbetter <[email protected]>",
"Richa Vyas <[email protected]>",
"Ed Morales <[email protected]>",
"Jason Weaver <[email protected]>",
"Jeremy Smartt <[email protected]>",
"Ilsun Park <[email protected]>",
"Julie Knowles <[email protected]>"
],
"dependencies": {
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/forms": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@angular/router": "^8.0.0",
"hammerjs": "^2.0.8",
"rxjs": "^6.3.3",
"simplemde": "^1.11.2",
"tslib": "^1.9.3",
"zone.js": "^0.8.17"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.800.1",
"@angular-devkit/build-ng-packagr": "^0.800.1",
"@angular/cli": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@types/hammerjs": "^2.0.30",
"@types/jasmine": "2.5.38",
"@types/node": "~6.0.60",
"@types/selenium-webdriver": "^2.52.0",
"codelyzer": "4.5.0",
"coveralls": "^2.12.0",
"electron": "^1.8.1",
"glob": "^6.0.4",
"gulp": "3.9.1",
"gulp-bump": "2.1.0",
"gulp-help": "1.6.1",
"gulp-if": "2.0.1",
"gulp-sass": "3.1.0",
"gulp-sourcemaps": "1.6.0",
"gulp-typescript": "3.1.4",
"gulp-util": "3.0.7",
"jasmine-core": "~2.5.2",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.3.0",
"karma-electron": "^5.2.2",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"merge2": "1.0.2",
"ng-packagr": "4.4.5",
"protractor": "~5.1.0",
"require-dir": "0.3.2",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"semver": "5.2.0",
"ts-node": "^3.0.4",
"tsickle": "^0.34.0",
"tslint": "5.2.0",
"typescript": "~3.4.5"
}
}