-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 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
{
"name": "svg.point.js",
"version": "0.1.0",
"description": "A plugin for the svg.js library that provide additional methods for SVG.Point",
"main": "src/svg.point.js",
"keywords": [
"svg.js",
"point",
"geometry"
],
"repository": {
"type": "git",
"url": "https://github.com/RmiTtro/svg.point.js.git"
},
"bugs": "https://github.com/RmiTtro/svg.point.js/issues",
"license": "MIT",
"author": "Rémi Tétreault <tetreault.remi@gmail.com>",
"contributors": [
"Rémi Tétreault <tetreault.remi@gmail.com>"
],
"scripts": {
"build": "webpack && npm run build:min",
"build:min": "webpack",
"test": "karma start"
},
"engines" : {
"npm" : ">= 3.0.0"
},
"dependencies": {
"svg.js": "^2.3.6"
},
"devDependencies": {
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.1",
"webpack": "^1.14.0",
"webpack-merge": "^2.0.0"
}
}