-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 907 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 907 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
33
34
35
36
{
"name": "triangular",
"version": "0.2.3",
"description": "Type safe wrapper for WebGL.",
"author": "Mark Murray",
"license": "UNLICENSED",
"repository": "git@github.com:mmmurray/triangular.git",
"keywords": [
"webgl",
"typescript"
],
"files": [
"lib"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write 'src/**/*.ts'",
"test:coverage": "jest --coverage",
"test:format": "prettier --check 'src/**/*.ts'",
"test:type": "tsc --noEmit",
"test:watch": "jest --watch",
"test": "yarn test:type && yarn test:format && yarn test:coverage"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"mantissa": "^0.2.0"
}
}