forked from svgdotjs/svg.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.98 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
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
{
"name": "svg.js",
"version": "2.6.4",
"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 <[email protected]>",
"main": "dist/svg.js",
"jam": {
"include": [
"dist/svg.js",
"README.md",
"LICENSE.txt"
]
},
"maintainers": [
{
"name": "Wout Fierens",
"email": "[email protected]",
"web": "https://svgdotjs.github.io/"
},
{
"name": "Ulrich-Matthias Schäfer",
"email": "[email protected]"
},
{
"name": "Rémi Tétreault",
"web": "https://github.com/RmiTtro"
},
{
"name": "Jon Ege Ronnenberg",
"email": "[email protected]",
"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",
"build:test": "gulp unify",
"test": "karma start .config/karma.conf.js --single-run",
"test:quick": "karma start .config/karma.quick.js"
},
"devDependencies": {
"coveralls": "^2.13.1",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-chmod": "^2.0.0",
"gulp-cli": "^1.3.0",
"gulp-concat": "^2.3.3",
"gulp-header": "^1.0.5",
"gulp-rename": "^1.2.2",
"gulp-size": "^2.1.0",
"gulp-trimlines": "^1.0.0",
"gulp-uglify": "^2.1.2",
"gulp-wrap": "^0.13.0",
"jasmine-core": "^2.6.2",
"karma": "^1.7.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"request": "^2.81.0",
"svgdom": "latest"
}
}