forked from mrsum/webpack-svgstore-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "webpack-svgstore-plugin",
"version": "3.0.3",
"description": "Webpack svgstore plugin",
"main": "src/svgstore.js",
"scripts": {
"test": "NODE_ENV=platform ./node_modules/.bin/_mocha ./src/__tests__/index.js",
"code:coverage": "NODE_ENV=platform ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha ./src/__tests__/index.js && npm run code:report",
"code:report": "CODECLIMATE_REPO_TOKEN=29b2c943849c33562af12b70563d86e95c073e04c7510e9da5d9711cf3233b17 ./node_modules/.bin/codeclimate-test-reporter < coverage/lcov.info",
"build": "rm -rf platform/dist/* && NODE_ENV=platform webpack --progress --colors --bail"
},
"author": "[email protected]",
"contributors": [
{
"name": "Mike Chernobrov",
"email": "[email protected]"
},
{
"name": "Gordey Levchenko",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"async": "1.5.2",
"crypto": "0.0.3",
"globby": "4.1.0",
"htmlparser2": "3.9.1",
"lodash": "3.10.1",
"pug": "0.1.0",
"svgo": "0.6.6"
},
"devDependencies": {
"chai": "3.5.0",
"codeclimate-test-reporter": "0.1.1",
"eslint-config-rambler": "0.2.2",
"istanbul": "0.4.3",
"mocha": "2.5.3",
"path": "0.11.14",
"webpack": "1.13.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mrsum/webpack-svgstore-plugin"
}
}