forked from webcat12345/ngx-ui-switch
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.03 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.03 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
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": "ngx-toggle-switch",
"version": "2.0.5",
"description": "switch button for angular4",
"bugs": "https://github.com/uncommonconcept/ngx-toggle-switch/issues",
"homepage": "https://github.com/uncommonconcept/ngx-toggle-switch#readme",
"repository": "https://github.com/uncommonconcept/ngx-toggle-switch.git",
"license": "MIT",
"author": "webcat12345",
"keywords": [
"angular2",
"angular4",
"ngx",
"ng2",
"uiswitch",
"switch",
"ui"
],
"scripts": {
"ng": "ng",
"start": "ng serve --aot",
"build": "rimraf dist && ts-node build.ts",
"build:demo": "rimraf demo && ng build --aot -prod --base-href=/ngx-ui-switch/demo/ --output-path=demo",
"release": "cd dist/packages-dist && yarn publish",
"bundlesize": "bundlesize",
"test": "ng test",
"test:ci": "ng test --browser ChromeHeadless --watch false",
"cleanup": "rimraf build dist waste deploy demo docs",
"ghpages": "ng build -prod --build-optimizer --aot --no-progress --baseHref='/ngx-ui-switch/'",
"lint": "ng lint --type-check",
"e2e": "ng e2e",
"e2e:ci": "ng e2e --config protractor-ci.conf.js --watch false",
"typedoc": "typedoc --options typedoc.json ngx-ui-switch.ts src/*.ts"
},
"dependencies": {
"@angular/animations": "^5.0.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/router": "^5.0.0",
"all-contributors-cli": "^4.5.0",
"bootstrap": "^4.0.0",
"core-js": "^2.5.1",
"rxjs": "^5.4.3",
"web-animations-js": "^2.3.1",
"zone.js": "^0.8.17"
},
"devDependencies": {
"@angular/cli": "^1.4.7",
"@angular/compiler-cli": "^5.0.0",
"@angular/language-service": "^5.0.0",
"@types/jasmine": "^2.6.0",
"@types/jasminewd2": "^2.0.3",
"@types/node": "^8.0.30",
"bundlesize": "^0.16.0",
"codelyzer": "^4.0.2",
"copy": "^0.3.1",
"fs-extra": "^4.0.2",
"jasmine-core": "^2.8.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "^5.1.2",
"rimraf": "^2.6.2",
"rollup": "^0.52.1",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"ts-node": "^4.0.1",
"tslint": "^5.7.0",
"typedoc": "^0.8.0",
"typescript": "~2.4.2"
},
"angular-cli": {},
"bundlesize": [
{
"path": "./dist/packages-dist/ui-switch.umd.js",
"maxSize": "8 kB"
}
],
"greenkeeper": {
"ignore": [
"@angular/animations",
"@angular/common",
"@angular/compiler",
"@angular/compiler-cli",
"@angular/core",
"@angular/forms",
"@angular/language-service",
"@angular/platform-browser",
"@angular/platform-browser-dynamic",
"@angular/router"
]
}
}