forked from mrsum/webpack-svgstore-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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": "webpack-svgstore-plugin",
"version": "3.0.6",
"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": "me@mrsum.ru",
"contributors": [
{
"name": "Mike Chernobrov",
"email": "me@mrsum.ru"
},
{
"name": "Gordey Levchenko",
"email": "levchenko.gordey@gmail.com"
}
],
"license": "MIT",
"dependencies": {
"async": "2.1.4",
"globby": "6.1.0",
"htmlparser2": "3.9.2",
"lodash": "4.17.2",
"pug": "2.0.0-beta6",
"svgo": "0.7.1"
},
"devDependencies": {
"chai": "3.5.0",
"codeclimate-test-reporter": "0.4.0",
"eslint-config-rambler": "0.2.5",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"path": "0.12.7",
"webpack": "1.13.3"
},
"repository": {
"type": "git",
"url": "https://github.com/mrsum/webpack-svgstore-plugin"
}
}