forked from evanshortiss/vector2d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.23 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "vector2d",
"keywords": [
"physics",
"math",
"vectors",
"2d",
"float",
"float32",
"Float32Array"
],
"description": "2D Vector library offering Float32Array, Object or standard Array based vectors.",
"main": "./src/Vec2D.js",
"author": "Evan Shortiss",
"version": "2.0.2",
"repository": {
"type": "git",
"url": "https://github.com/evanshortiss/vec2d.git"
},
"testling": {
"harness": "mocha-bdd",
"files": "test/*.js",
"browsers": [
"ie/8..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/4..latest",
"opera/11.0..latest",
"iphone/6..latest",
"ipad/6..latest",
"android-browser/latest"
]
},
"devDependencies": {
"mocha": "1.18.2",
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"grunt-contrib-uglify": "~0.3.1",
"grunt-mocha-test": "~0.8.2",
"browserify": "^4.1.5",
"grunt-browserify": "^2.1.0"
},
"scripts": {
"test": "grunt build && mocha --ui bdd"
},
"directories": {
"test": "./test"
},
"bugs": {
"url": "https://github.com/evanshortiss/vec2d/issues"
},
"licenses": [
{
"type": "MIT"
}
],
"engines": {
"node": ">=0.8.8"
}
}