UNPKG

3.38 kBJSONView Raw
1{
2 "name": "svg-sprite-loader",
3 "version": "6.0.10",
4 "description": "Webpack loader for creating SVG sprites",
5 "keywords": [
6 "svg",
7 "sprite",
8 "svg sprite",
9 "svg stack",
10 "webpack",
11 "webpack2",
12 "webpack3",
13 "webpack loader",
14 "webpack plugin"
15 ],
16 "homepage": "https://github.com/JetBrains/svg-sprite-loader#readme",
17 "bugs": "https://github.com/JetBrains/svg-sprite-loader/issues",
18 "license": "MIT",
19 "author": "kisenka",
20 "repository": "JetBrains/svg-sprite-loader",
21 "main": "lib/loader.js",
22 "files": [
23 "examples/**",
24 "lib/**",
25 "runtime/*.js",
26 "plugin.js",
27 "README.md",
28 "LICENSE"
29 ],
30 "engines": {
31 "node": ">=6"
32 },
33 "dependencies": {
34 "bluebird": "^3.5.0",
35 "deepmerge": "1.3.2",
36 "domready": "1.0.8",
37 "escape-string-regexp": "1.0.5",
38 "loader-utils": "^1.1.0",
39 "svg-baker": "^1.5.0",
40 "svg-baker-runtime": "^1.4.7",
41 "url-slug": "2.0.0"
42 },
43 "devDependencies": {
44 "babel-core": "^6.24.1",
45 "babel-loader": "^6.4.1",
46 "babel-plugin-transform-object-rest-spread": "6.23.0",
47 "babel-preset-es2015": "^6.24.0",
48 "babel-preset-react": "6.24.1",
49 "chai": "^3.5.0",
50 "ci-publish": "^1.3.1",
51 "codeclimate-test-reporter": "0.4.1",
52 "commitizen": "2.9.6",
53 "css-loader": "^0.28.0",
54 "cz-customizable": "^5.0.0",
55 "eslint-config-airbnb-base": "^11.1.2",
56 "eslint-plugin-import": "^2.2.0",
57 "glob": "7.1.1",
58 "husky": "^0.13.3",
59 "istanbul": "^0.4.5",
60 "memory-fs": "^0.4.1",
61 "minimist": "^1.2.0",
62 "mocha": "^7.0.0",
63 "nyc": "^10.3.2",
64 "pascal-case": "2.0.1",
65 "react": "15.5.4",
66 "react-dom": "15.5.4",
67 "rollup": "^0.41.6",
68 "rollup-plugin-buble": "^0.15.0",
69 "rollup-plugin-commonjs": "^8.0.2",
70 "rollup-plugin-node-resolve": "^3.0.0",
71 "shelljs": "0.7.7",
72 "standard-version": "4.0.0",
73 "svgo": "^0.7.2",
74 "svgo-loader": "^1.2.1",
75 "validate-commit-msg": "^2.12.1",
76 "wallaby-webpack": "^3.9.15",
77 "webpack-cli": "^3.3.10",
78 "webpack-toolkit": "^1.0.0"
79 },
80 "config": {
81 "commitizen": {
82 "path": "node_modules/cz-customizable"
83 },
84 "cz-customizable": {
85 "config": ".cz-config.js"
86 }
87 },
88 "scripts": {
89 "bootstrap": "node scripts/bootstrap",
90 "build:examples": "yarn env webpack-3 && yarn run build:runtime && node scripts/build-examples-dll && node scripts/build-examples",
91 "build:runtime": "node scripts/build-runtime.js",
92 "commit": "git-cz",
93 "commitmsg": "validate-commit-msg",
94 "env": "node scripts/select-env",
95 "lint": "eslint --quiet lib runtime scripts test",
96 "precommit": "yarn lint",
97 "pretest": "yarn build:runtime",
98 "prerelease": "yarn build:runtime && yarn lint && yarn test:all",
99 "release": "yarn build:examples && git add examples && standard-version -a && git push --follow-tags origin master",
100 "release:dry-run": "standard-version --no-verify",
101 "test": "mocha test/*.test.js",
102 "test:all": "yarn test:webpack-2 && yarn test:webpack-3 && yarn test:webpack-4",
103 "test:webpack-2": "yarn env webpack-2 && env WEBPACK_VERSION=2 yarn test",
104 "test:webpack-3": "yarn env webpack-3 && env WEBPACK_VERSION=3 yarn test",
105 "test:webpack-4": "yarn env webpack-4 && env WEBPACK_VERSION=4 yarn test",
106 "upload-coverage": "codeclimate-test-reporter < coverage/lcov.info"
107 }
108}