forked from barryam3/css-star-rating
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.9 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
{
"name": "css-star-rating",
"version": "1.2.5",
"license": "MIT",
"keywords": [
"Rating",
"Stars",
"Star Rating",
"Star-Rating",
"Starrating",
"5-Star Rating",
"Icon",
"Iconfont",
"Fonticons",
"Fontawesome",
"Ionicons",
"SVG",
"CSS3",
"Pure CSS",
"CSS only",
"SCSS",
"Flexbox"
],
"description": "Css Star Rating is pure css component written in scss.",
"author": "Michael Hladky",
"repository": {
"type": "git",
"url": "git+https://github.com/BioPhoton/css-star-rating.git"
},
"contributors": [
{
"name": "Michael Hladky",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/BioPhoton/css-star-rating/issues"
},
"homepage": "https://github.com/BioPhoton/css-star-rating#readme",
"main": "dist/css/star-rating.css",
"devDependencies": {
"angularic-ionicon": "^1.1.0",
"conventional-changelog": "^1.1.0",
"copyfiles": "^1.2.0",
"css-loader": "^0.26.0",
"del": "^2.2.2",
"extendify": "^1.0.0",
"file-loader": "^0.9.0",
"font-awesome": "^4.7.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-bump": "^2.5.1",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.2",
"gulp-load-plugins": "^1.4.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-print": "^2.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-task-listing": "^1.0.1",
"gulp-util": "^3.0.7",
"ionicons": "^2",
"kss": "^3.0.0-beta.18",
"merge-stream": "^1.0.1",
"node-sass": "^4.5.2",
"phantomcss": "^1.5.0",
"sass-loader": "^4.0.2",
"sc5-styleguide": "^1.3.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"wrench": "^1.5.9",
"yargs": "^6.4.0"
},
"dependencies": {},
"scripts": {
"INLINE_DOCUMENTATION" : "To release the project: bump version, run changelog, run project:build, check travis,",
"project:build":"npm run clean:dist && npm run build && npm run styleguide",
"build": "npm run build:css && npm run build:asstest",
"build:css": "gulp project:build",
"build:asstest" : "copyfiles -u 0 README.md ./dist && copyfiles -u 0 ./package.json ./dist && copyfiles -u 0 ./LICENSE ./dist",
"styleguide": "npm run styleguide:assets && npm run styleguide:build",
"styleguide:assets": "copyfiles -u 2 ./dist/css/* ./docs/assets/css && copyfiles -u 2 ./dist/images/* ./docs/assets/images && copyfiles -u 2 ./docs-assets/fontawesome/fontawesome-all.min.css ./docs/assets/css && copyfiles -u 3 ./docs-assets/fontawesome/webfonts/* ./docs/assets/webfonts",
"styleguide:build": "./node_modules/.bin/kss --config ./kss-config.json",
"version:bump": "gulp version:bump",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release:github": "conventional-github-releaser",
"release:npm": "npm publish ./dist",
"clean:dist": "rimraf dist"
}
}