-
-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathpackage.json
45 lines (45 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
42
43
44
45
{
"name": "@aaronfagan/ccicons",
"version": "0.1.1",
"description": "SVG Credit Card & Payment Icons",
"main": "src/index.js",
"scripts": {
"build:demo": "webpack --config=webpack.demo.js",
"build:test": "webpack --config=webpack.test.js",
"build:develop": "npm run build:demo && npm run build:test",
"build:release": "webpack --config=webpack.prod.js",
"build": "npm run build:release",
"start": "webpack serve --open --config webpack.demo.js",
"test": "webpack serve --open --config webpack.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaronfagan/svg-credit-card-payment-icons.git"
},
"keywords": [
"svg",
"icon"
],
"author": "Aaron Fagan",
"contributors": [
{
"author": "Robert Medeiros <robert@crimeminister.org>"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aaronfagan/svg-credit-card-payment-icons/issues"
},
"homepage": "https://github.com/aaronfagan/svg-credit-card-payment-icons#readme",
"devDependencies": {
"chai": "5.1.1",
"css-loader": "7.1.2",
"html-webpack-plugin": "5.6.0",
"mocha": "10.7.0",
"style-loader": "4.0.0",
"webpack": "5.94.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4",
"webpack-merge": "6.0.1"
}
}