|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | {
|
|---|
| 2 | "name": "svg-parser",
|
|---|
| 3 | "version": "2.0.4",
|
|---|
| 4 | "description": "Create a JSON-friendly object from an SVG string",
|
|---|
| 5 | "main": "dist/svg-parser.umd.js",
|
|---|
| 6 | "jsnext:main": "dist/svg-parser.esm.js",
|
|---|
| 7 | "module": "dist/svg-parser.esm.js",
|
|---|
| 8 | "files": [
|
|---|
| 9 | "dist",
|
|---|
| 10 | "README.md"
|
|---|
| 11 | ],
|
|---|
| 12 | "scripts": {
|
|---|
| 13 | "test": "mocha",
|
|---|
| 14 | "build": "rm -rf dist && rollup -c",
|
|---|
| 15 | "pretest": "npm run build",
|
|---|
| 16 | "prepublish": "npm run lint && npm test",
|
|---|
| 17 | "lint": "eslint src"
|
|---|
| 18 | },
|
|---|
| 19 | "prettier": {
|
|---|
| 20 | "singleQuote": true,
|
|---|
| 21 | "useTabs": true,
|
|---|
| 22 | "printWidth": 100
|
|---|
| 23 | },
|
|---|
| 24 | "repository": {
|
|---|
| 25 | "type": "git",
|
|---|
| 26 | "url": "git+https://github.com/Rich-Harris/svg-parser.git"
|
|---|
| 27 | },
|
|---|
| 28 | "keywords": [
|
|---|
| 29 | "SVG",
|
|---|
| 30 | "parser",
|
|---|
| 31 | "JSON",
|
|---|
| 32 | "object"
|
|---|
| 33 | ],
|
|---|
| 34 | "author": "Rich Harris",
|
|---|
| 35 | "license": "MIT",
|
|---|
| 36 | "bugs": {
|
|---|
| 37 | "url": "https://github.com/Rich-Harris/svg-parser/issues"
|
|---|
| 38 | },
|
|---|
| 39 | "homepage": "https://github.com/Rich-Harris/svg-parser#README",
|
|---|
| 40 | "devDependencies": {
|
|---|
| 41 | "@rollup/plugin-buble": "^0.21.0",
|
|---|
| 42 | "@rollup/plugin-node-resolve": "^7.0.0",
|
|---|
| 43 | "eslint": "^3.2.2",
|
|---|
| 44 | "locate-character": "^2.0.5",
|
|---|
| 45 | "mocha": "^3.0.1",
|
|---|
| 46 | "prettier": "^1.18.2",
|
|---|
| 47 | "rollup": "^1.29.0",
|
|---|
| 48 | "source-map-support": "^0.4.2"
|
|---|
| 49 | }
|
|---|
| 50 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.