forked from Algotec/webpack-svgstore-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.53 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
{
"name": "webpack-svgstore-plugin",
"version": "6.0.0-labd.1",
"description": "Webpack svgstore plugin",
"main": "src/svgstore.js",
"scripts": {
"test": "cross-env NODE_ENV=platform mocha ./src/__tests__/index.js",
"code:coverage": "cross-env NODE_ENV=platform istanbul cover ./node_modules/mocha/bin/_mocha ./src/__tests__/index.js && npm run code:report",
"code:report": "cross-env CODECLIMATE_REPO_TOKEN=29b2c943849c33562af12b70563d86e95c073e04c7510e9da5d9711cf3233b17 ./node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info",
"build": "rimraf platform/dist/* && cross-env NODE_ENV=platform webpack --progress --bail"
},
"author": "[email protected]",
"contributors": [
{
"name": "Mike Chernobrov",
"email": "[email protected]"
},
{
"name": "Nadav Sinai",
"email": "[email protected]"
},
{
"name": "Gordey Levchenko",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"glob": "8.0.3",
"htmlparser2": "^8.0.1",
"lodash": "^4.17.21",
"path-dirname": "1.0.2",
"pug": "^3.0.2",
"svgo": "^3.0.2"
},
"devDependencies": {
"chai": "^4.3.7",
"codeclimate-test-reporter": "^0.5.1",
"cross-env": "^7.0.3",
"eslint-config-rambler": "^0.3.1",
"istanbul": "^0.4.5",
"mocha": "^10.1.0",
"path": "^0.12.7",
"rimraf": "^3.0.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mrsum/webpack-svgstore-plugin"
}
}