vec2
Version:
manipulate vectors in 2d
47 lines (46 loc) • 962 B
JSON
{
"author": "Elijah Insua <tmpvar@gmail.com> (http://tmpvar.com)",
"name": "vec2",
"description": "manipulate vectors in 2d",
"keywords": [
"2d",
"vec",
"vector",
"geometry"
],
"version": "1.6.1",
"homepage": "https://github.com/tmpvar/vec2.js",
"repository": {
"type": "git",
"url": "https://github.com/tmpvar/vec2.js.git"
},
"main": "vec2.js",
"typings": "types",
"scripts": {
"test": "mocha test/test.js",
"cover": "istanbul cover _mocha -- test/test.js -R spec",
"bench": "./test/bench/run.sh",
"minify": "cat vec2.js | uglifyjs > vec2.min.js"
},
"devDependencies": {
"mocha": "~1.17.0",
"istanbul": "~0.2.3",
"JSON2": "~0.1.0"
},
"testling": {
"browsers": [
"ie6",
"ie7",
"ie8",
"ie9",
"firefox/15",
"chrome/22",
"opera/12",
"safari/5.1"
],
"harness": "mocha-bdd",
"files": [
"test/test.js"
]
}
}