-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
46 lines (46 loc) · 962 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"author": "Elijah Insua <[email protected]> (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"
]
}
}