-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
executable file
·75 lines (75 loc) · 2.14 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
{
"name": "ngx-freshdesk-webwidget",
"version": "1.1.0",
"scripts": {
"clean:dist": "gulp clean:dist",
"build": "gulp build",
"build:watch": "gulp",
"docs": "npm run docs:build",
"docs:build": "compodoc -p tsconfig.json -n ngx-freshdesk-webwidget -d docs --hideGenerator",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"lint": "tslint --project tsconfig.json src/*.ts",
"lite": "lite-server",
"playground:build": "tsc -p playground -w",
"playground": "concurrently \"npm run build:watch\" \"npm run playground:build\" \"npm run lite\""
},
"repository": {
"type": "git",
"url": "https://github.com/AlisonVilela/ngx-freshdesk-webwidget.git"
},
"author": {
"name": "Alison Vilela",
"email": "alison.vilela@live.nl"
},
"keywords": [
"angular"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/AlisonVilela/ngx-freshdesk-webwidget/issues"
},
"devDependencies": {
"@angular/cli": "10.0.1",
"@angular/common": "10.0.2",
"@angular/compiler": "10.0.2",
"@angular/compiler-cli": "10.0.2",
"@angular/core": "10.0.2",
"@angular/platform-browser": "10.0.2",
"@angular/platform-browser-dynamic": "10.0.2",
"@compodoc/compodoc": "1.1.11",
"@types/jasmine": "3.5.11",
"@types/node": "14.0.18",
"codelyzer": "6.0.0",
"core-js": "3.6.5",
"del": "5.1.0",
"gulp": "4.0.2",
"gulp-rename": "2.0.0",
"gulp-rollup": "2.17.0",
"gulp4-run-sequence": "1.0.1",
"jasmine-core": "3.5.0",
"jasmine-spec-reporter": "5.0.2",
"karma": "5.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "3.3.1",
"karma-jasmine-html-reporter": "1.5.4",
"node-sass": "4.14.1",
"node-sass-tilde-importer": "1.0.2",
"node-watch": "0.6.4",
"protractor": "7.0.0",
"rollup": "2.20.0",
"ts-node": "8.10.2",
"tsickle": "0.39.1",
"tslint": "6.1.2",
"typescript": "3.9.6",
"zone.js": "0.10.3"
},
"engines": {
"node": ">=12.4.0"
},
"publishConfig": {
"access": "public"
}
}