-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "codebadges",
"version": "1.0.4",
"description": "Badges to show off your progress at GitHub, FreeCodeCamp, CodeSchool, Codecademy, Treehouse etc",
"main": "js/codebadges.js",
"style": "css/codebadges.css",
"scripts": {
"css-minify": "cleancss -o dist/codebadges.min.css css/codebadges.css",
"js-minify": "uglifyjs js/codebadges.js --compress warnings=false --mangle --comments '/^!/' --output dist/codebadges.min.js",
"test": "mocha-phantomjs --ignore-ssl-errors=true --ssl-protocol=any test/testrunner.html || true"
},
"repository": {
"type": "git",
"url": "https://github.com/codemzy/codebadges.git"
},
"keywords": [
"code",
"badges",
"web"
],
"author": "codemzy",
"license": "MIT",
"bugs": {
"url": "https://github.com/codemzy/codebadges/issues"
},
"homepage": "https://codemzy.github.io/codebadges",
"devDependencies": {
"chai": "~4.0.2",
"clean-css-cli": "~4.1.5",
"mocha": "~3.4.2",
"mocha-phantomjs": "~4.1.0",
"uglify-js": "~3.0.15"
}
}