-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 993 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 993 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
37
38
39
40
41
42
43
44
{
"name": "recursion-sampler",
"version": "1.0.0",
"description": "A package demonstrating recursion, memoization, and trampolines.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hallzac2/recursive-sampler.git"
},
"author": {
"name": "Zackary Hall",
"email": "hallzac2@isu.edu"
},
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/hallzac2/recursive-sampler/issues"
},
"homepage": "https://github.com/hallzac2/recursive-sampler#readme",
"devDependencies": {
"@types/jest": "^24.0.25",
"jest": "^24.9.0",
"ts-jest": "^24.3.0",
"typescript": "^3.7.4"
}
}