aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
blob: bdc1376a629871863b69689b4fac0e28c7ad6aa2 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
  "name": "svg.js",
  "version": "3.0.0",
  "description": "A lightweight library for manipulating and animating SVG.",
  "url": "https://svgdotjs.github.io/",
  "homepage": "https://svgdotjs.github.io/",
  "keywords": [
    "svg",
    "vector",
    "graphics",
    "animation"
  ],
  "author": "Wout Fierens <wout@mick-wout.com>",
  "main": "dist/svg.js",
  "jam": {
    "include": [
      "dist/svg.js",
      "README.md",
      "LICENSE.txt"
    ]
  },
  "maintainers": [
    {
      "name": "Wout Fierens",
      "email": "wout@mick-wout.com",
      "web": "https://svgdotjs.github.io/"
    },
    {
      "name": "Alex Ewerlöf",
      "email": "alex@userpixel.com",
      "web": "http://www.ewerlof.name"
    },
    {
      "name": "Ulrich-Matthias Schäfer",
      "email": "ulima.ums@googlemail.com"
    },
    {
      "name": "Jon Ege Ronnenberg",
      "email": "jon@svgjs.com",
      "url": "https://keybase.io/dotnetcarpenter"
    }
  ],
  "licenses": [
    {
      "type": "MIT",
      "url": "http://www.opensource.org/licenses/mit-license.php"
    }
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/svgdotjs/svg.js.git"
  },
  "github": "https://github.com/svgdotjs/svg.js",
  "license": "MIT",
  "typings": "./svg.js.d.ts",
  "scripts": {
    "build": "gulp",
    "lint": "gulp lint",
    "build:test": "gulp unify",
    "build:dev": "gulp --dont-break",
    "test": "karma start .config/karma.conf.js --single-run",
    "test:dots": "karma start .config/karma.conf.js --single-run --reporters dots",
    "test:quick": "karma start .config/karma.quick.js"
  },
  "devDependencies": {
    "coveralls": "^2.11.15",
    "del": "^2.2.0",
    "gulp": "^3.8.6",
    "gulp-chmod": "^2.0.0",
    "gulp-cli": "^1.2.2",
    "gulp-concat": "^2.3.3",
    "gulp-header": "^1.0.5",
    "gulp-rename": "^1.2.0",
    "gulp-size": "^2.1.0",
    "gulp-standard": "^10.1.2",
    "gulp-trimlines": "^1.0.0",
    "gulp-uglify": "^2.0.0",
    "gulp-wrap": "^0.13.0",
    "jasmine-core": "^2.5.2",
    "karma": "^1.3.0",
    "karma-coverage": "^1.1.1",
    "karma-firefox-launcher": "^1.0.0",
    "karma-jasmine": "^1.0.2",
    "karma-phantomjs-launcher": "^1.0.2",
    "request": "^2.78.0",
    "snazzy": "^6.0.0",
    "standard": "^9.0.1",
    "svgdom": "latest"
  },
  "standard": {
    "ignore": [
      "/dist",
      "/spec",
      "/src/umd.js"
    ],
    "globals": [
      "SVG"
    ]
  }
}