-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 862 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 862 Bytes
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
{
"name": "ts-vector",
"version": "0.1.0",
"description": "A vector and numeric array implementation with common math and statistical functions for JavaScript and TypeScript",
"keywords": [
"vector",
"math",
"statistics",
"array inheritance"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "ggmod",
"license": "MIT",
"scripts": {
"prepublish": "gulp bundle && rm -rf dist/* && tsc",
"test": "rm -rf build-test; cd test; tsc; cd ..; jasmine-node --matchall ./build-test/test/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ggmod/ts-vector.git"
},
"devDependencies": {
"browserify": "^13.0.1",
"del": "^2.2.1",
"exorcist": "^0.4.0",
"gulp": "^3.9.1",
"tsify": "^0.16.0",
"typescript": "^1.8.10",
"vinyl-source-stream": "^1.1.0"
}
}