forked from maxkueng/victor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 872 Bytes
/
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
{
"name": "@a-robu/victor",
"version": "2.2.2",
"description": "A JavaScript 2D vector class with methods for common vector operations (fork of Victor)",
"keywords": [
"vector",
"2d"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/a-robu/victor.git"
},
"scripts": {
"doc": "markdox index.js -o documentation/api.md",
"test": "mocha --ui bdd --reporter spec"
},
"author": "Andrei D. Robu <[email protected]> (https://andreirobu.uk)",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/a-robu/victor/raw/master/LICENSE"
}
],
"homepage": "https://a-robu.github.io/victor/",
"devDependencies": {
"angle-distance": "^1.0.0",
"browserify": "^3.33.0",
"chai": "~1.9.1",
"markdox": "^0.1.4",
"mocha": "^8.1.3",
"uglify-js": "^2.4.13"
}
}