forked from muffinresearch/payment-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.29 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
{
"name": "payment-icons",
"version": "0.0.13",
"description": "payment icon svgs",
"scripts": {
"clean": "rimraf min/**/*.svg build/",
"sprite": "svg-sprite -C ./svg-sprite.json 'min/./**/*.svg'",
"minify": "svgo -f svg/flat/ -o min/flat && svgo -f svg/mono/ -o min/mono && svgo -f svg/outline -o min/outline && svgo -f svg/single -o min/single",
"publish": "yarn build && yarn sprite && gh-pages -dist build/css --repo '[email protected]:muffinresearch/payment-icons.git' --message 'updating example'",
"build": "yarn run clean && yarn run minify",
"test": "jest tests --watch",
"test-ci": "jest tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muffinresearch/payment-icons.git"
},
"keywords": [
"icons",
"payments",
"font",
"credit cards"
],
"author": "Stuart Colville",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/muffinresearch/payment-icons/issues"
},
"homepage": "https://github.com/muffinresearch/payment-icons#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-preset-env": "^1.6.1",
"cheerio": "^1.0.0-rc.2",
"gh-pages": "^1.1.0",
"glob": "^7.1.2",
"jest": "^22.1.4",
"svg-sprite": "^1.3.7",
"svgo": "^1.0.3"
}
}