-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"name": "gl-matrix-ts",
"version": "2.3.3",
"description": "TypeScript port of gl-matrix",
"main": "",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/pjoe/gl-matrix-ts.git",
"author": "Pelle Johnsen",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.5.53",
"jasmine-core": "^2.6.4",
"jsdom": "^11.1.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-jsdom-launcher": "^6.1.2",
"karma-spec-reporter": "^0.0.31",
"karma-typescript": "^3.0.4",
"karma-typescript-es6-transform": "^1.0.1",
"opn-cli": "^3.1.0",
"prettier": "^1.5.3",
"tslint": "^5.5.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.4.1"
},
"scripts": {
"compile": "tsc -p tsconfig.build.json",
"lint": "tslint -t codeFrame -p tsconfig.json",
"test": "karma start --single-run",
"watch": "karma start",
"open:cover": "opn coverage/jsdom/html/index.html"
}
}