forked from edcarroll/ng2-semantic-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 3.39 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
{
"name": "@giomamaladze/ng2-semantic-ui",
"version": "1.0.0",
"description": "Angular Semantic UI Components",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:Belouccio/ng2-semantic-ui.git"
},
"bugs": {
"url": "git+ssh://[email protected]:Belouccio/ng2-semantic-ui/tree/master/issues"
},
"author": "https://github.com/edcarroll/ng2-semantic-ui/graphs/contributors",
"keywords": [
"angular",
"angular-components",
"semantic-ui",
"no-jquery",
"ui",
"typescript"
],
"license": "MIT",
"scripts": {
"lib:lint": "ng lint lib",
"lib:test": "ng test lib --code-coverage --source-map false --progress false --watch false",
"lib:compile:locales": "tsc --project src/behaviors/localization/tsconfig.locales.json && node ./scripts/locales",
"lib:compile": "ng build lib && npm run lib:compile:locales",
"lib:compile:w": "ng build lib --watch",
"lib:compile:prod": "ng build lib --prod && npm run lib:compile:locales",
"lib:build": "npm run lib:lint && npm run lib:compile",
"lib:build:prod": "npm run lib:lint && npm run lib:compile:prod",
"demo:serve": "ng serve demo --host 0.0.0.0",
"demo:lint": "ng lint demo",
"demo:compile": "ng build demo",
"demo:compile:prod": "ng build demo --prod",
"demo:build": "npm run demo:compile",
"demo:build:prod": "npm run demo:compile:prod",
"lint": "npm run lib:lint && npm run demo:lint",
"test": "npm run lib:test",
"build": "npm run lib:build && npm run demo:build",
"build:prod": "npm run lib:build:prod && npm run demo:build:prod"
},
"dependencies": {
"bowser": "^1.7.2",
"date-fns": "2.0.0-alpha.1",
"element-closest": "^2.0.2",
"extend": "^3.0.2",
"is-ua-webview": "^1.0.5",
"popper.js": "^1.16.1",
"ts-input-mask": "^2.1.0",
"tslib": "^2.2.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1102.12",
"@angular/animations": "^11.2.13",
"@angular/cli": "~11.2.12",
"@angular/common": "^11.2.13",
"@angular/compiler": "^11.2.13",
"@angular/compiler-cli": "^11.2.13",
"@angular/core": "^11.2.13",
"@angular/forms": "^11.2.13",
"@angular/http": "^7.2.16",
"@angular/language-service": "^11.2.13",
"@angular/platform-browser": "^11.2.13",
"@angular/platform-browser-dynamic": "^11.2.13",
"@angular/router": "^11.2.13",
"@edcarroll/code-style": "^2.0.0",
"@types/extend": "^3.0.1",
"@types/jasmine": "~3.5.9",
"@types/jasminewd2": "~2.0.8",
"@types/node": "~13.9.1",
"@types/prismjs": "~1.4.18",
"bowser": "^1.7.2",
"core-js": "^2.5.4",
"date-fns": "2.0.0-alpha.1",
"element-closest": "^3.0.2",
"extend": "^3.0.2",
"fs-extra": "^8.1.0",
"is-ua-webview": "^1.0.5",
"jasmine-core": "~3.7.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.6.0",
"karma-min-reporter": "^0.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-remap-istanbul": "~0.6.0",
"ng-packagr": "^12.0.0",
"node-sass": "4.14.1",
"popper.js": "^1.16.1",
"prismjs": "~1.23.0",
"rxjs": "^7.0.1",
"ts-node": "~9.1.1",
"tsickle": "0.39.1",
"tslint": "~6.1.3",
"typescript": "^4.2.0",
"web-animations-js": "^2.3.2",
"zone.js": "~0.11.4"
}
}