-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "victor",
"version": "1.1.0",
"description": "A JavaScript 2D vector class with methods for common vector operations",
"keywords": [
"vector",
"2d"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/maxkueng/victor.git"
},
"scripts": {
"build": "(echo '/*!' ; cat ./LICENSE ; echo '*/' ; browserify index.js --standalone Victor) > build/victor.js && cat build/victor.js | uglifyjs -mc --comments '/^!/' > build/victor.min.js",
"doc": "markdox index.js -o documentation/api.md",
"test": "mocha --ui bdd --reporter spec"
},
"homepage": "http://victorjs.org/",
"author": "Max Kueng <[email protected]> (http://maxkueng.com/)",
"maintainers": [
"Max Kueng (http://maxkueng.com/)",
"George Crabtree (http://georgecrabtree.com/)"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/maxkueng/victor/raw/master/LICENSE"
}
],
"devDependencies": {
"browserify": "^3.33.0",
"uglify-js": "^2.4.13",
"chai": "~1.9.1",
"mocha": "~1.18.2",
"markdox": "^0.1.4"
}
}