-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
123 lines (123 loc) · 3.94 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
117
118
119
120
121
122
123
{
"name": "@collab-ui/core",
"description": "Cisco Collab UI CSS Framework",
"version": "10.31.0",
"author": "Cisco Systems, Inc.",
"homepage": "http://collab-ui.cisco.com/",
"license": "MIT",
"keywords": [
"Cisco",
"Webex",
"Cisco Spark",
"Spark UI",
"Collab UI",
"CSS",
"Scss"
],
"repository": {
"type": "git",
"url": "https://github.com/collab-ui/collab-ui-core"
},
"bugs": {
"url": "https://github.com/collab-ui/collab-ui-core/issues"
},
"style": "css/collab-ui.css",
"scss": "scss/collab-ui.scss",
"scripts": {
"build": "run-s build:md build:data build:lib build:ng",
"build:data": "node ./tools/generateComponentData.js",
"build:docs": "run-s build:md build:data build:ng",
"build:lib": "run-s css:clean css:build css:optimize css:minify css:header css:gzip",
"build:md": "node ./tools/markdownToHtml.js",
"build:ng": "ng build --prod --aot=false",
"clean:install": "rimraf node_modules && yarn install",
"clean:update": "rimraf node_modules && yarn clean cache && yarn install && yarn upgrade",
"css:build": "node-sass -i scss/collab-ui.scss -o css/ --include-path node_modules/",
"css:clean": "rimraf css/",
"css:gzip": "node tools/gzip.js",
"css:header": "node tools/header.js",
"css:minify": "cleancss css/collab-ui.css -o css/collab-ui.min.css -O 2 --source-map",
"css:optimize": "cleancss css/collab-ui.css -o css/collab-ui.css --format beautify -O 2",
"e2e:docs": "ng e2e",
"lint:docs": "ng lint",
"lint:lib": "stylelint 'scss/**/*.scss' --syntax scss",
"ng": "ng",
"postinstall": "npm run sourcemaps",
"prepublishOnly": "run-s build:lib build:data",
"release": "toolkit-pub",
"sourcemaps": "node ./cli-patch.js",
"start": "run-p watch:data start:docs",
"start:docs": "ng serve -sm -ec --poll 10000 --preserve-symlinks",
"test:docs": "ng test",
"test": "echo \"Success: this is a test\" && exit 0",
"watch:data": "npm-watch build:data"
},
"watch": {
"build:data": {
"patterns": [
"scss/"
],
"extensions": "scss",
"quiet": true
}
},
"dependencies": {
"@collab-ui/icons": "^3.23.0"
},
"devDependencies": {
"@angular/animations": "^4.0.0",
"@angular/cli": "1.6.6",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"@collab-ui/angular": "^4.0.0",
"@collab-ui/utils": "^2.0.0",
"@gfx/zopfli": "^1.0.8",
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/exec": "^2.2.4",
"@semantic-release/git": "^5.0.0",
"@types/jasmine": "2.5.38",
"@types/node": "~8.0.0",
"ciscospark": "^1.32.19",
"clean-css-cli": "^4.1.11",
"codelyzer": "~4.1.0",
"core-js": "^2.5.4",
"google-code-prettify": "^1.0.5",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"jsonfile": "^4.0.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.8.3",
"npm-run-all": "^4.1.2",
"npm-watch": "^0.3.0",
"protractor": "~5.1.0",
"rimraf": "^2.6.2",
"rxjs": "5.5.2",
"semantic-release": "^15.6.0",
"showdown": "^1.8.1",
"stylelint": "^9.2.0",
"stylelint-config-recommended": "^2.1.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^2.4.0",
"stylelint-selector-bem-pattern": "^2.0.0",
"ts-node": "~5.0.0",
"tslint": "~5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-eslint-rules": "^5.0.0",
"typescript": ">=2.4.2 <2.5",
"yargs": "^11.0.0",
"yarn": "^1.7.0",
"zone.js": "^0.8.25"
}
}