forked from DmitryBaranovskiy/raphael
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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": "raphael",
"version": "2.2.7",
"description": "JavaScript Vector Library",
"main": "raphael.min.js",
"author": {
"name": "Dmitry Baranovskiy"
},
"contributors": [
{
"name": "Tomas Alabes",
"url": "https://github.com/tomasAlabes"
}
],
"dependencies": {
"eve-raphael": "0.5.0"
},
"devDependencies": {
"qunitjs": "2.4.1",
"webpack": "4.2.0",
"webpack-cli": "2.0.12"
},
"scripts": {
"build-dev": "webpack -d",
"build-no-deps": "webpack --env.noDeps -d --output-filename raphael.no-deps.js",
"build-no-deps-min": "webpack --env.noDeps -p --output-filename raphael.no-deps.min.js",
"build-prod": "webpack -p --output-filename raphael.min.js",
"build-all": "yarn build-dev && yarn build-no-deps && yarn build-no-deps-min && yarn build-prod",
"test": "echo \"Open dev/test/index.html with your browser\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/DmitryBaranovskiy/raphael.git"
},
"bugs": {
"url": "https://github.com/DmitryBaranovskiy/raphael/issues"
},
"keywords": [
"svg",
"vml",
"javascript"
],
"homepage": "http://dmitrybaranovskiy.github.io/raphael/",
"license": "MIT"
}