-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
{
"name": "angle-functions",
"version": "0.3.0",
"description": "Functions for working with angles",
"author": "Don Smith <[email protected]> (http://blog.dezent.io)",
"license": "Apache-2.0",
"homepage": "https://github.com/theorbitals/angle-functions",
"repository": {
"type": "git",
"url": "https://github.com/theorbitals/angle-functions.git"
},
"bugs": {
"url": "https://github.com/theorbitals/angle-functions/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run lint && tsc",
"lint": "tslint --project .",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/tests/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"keywords": [
"angles",
"degrees",
"radians",
"mod",
"sin",
"cos",
"tan",
"sinh",
"cosh",
"arcsinh"
],
"devDependencies": {
"@types/jest": "^22.2.0",
"jest": "^22.4.2",
"ts-jest": "^22.4.1",
"tslint": "^5.9.1",
"typescript": "^2.7.2"
}
}