-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.64 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
52
53
{
"name": "vellichor",
"version": "1.0.1",
"description": "A collection of containers and algorithms",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run test && npm run build",
"test": "",
"lint": "tslint 'src/**/*.ts'",
"docs": "tsc && node_modules/.bin/jsdoc -c jsdocconfig.json -t node_modules/postman-jsdoc-theme dist/**/* README.md -d docs",
"benchmark_thousand": "node benchmark/thousand",
"benchmark_2mil": "ts-node benchmark/DoubleEndedQueue/two_million.ts",
"benchmark_splice": "ts-node benchmark/DoubleEndedQueue/splice.ts",
"benchmark_remove": "ts-node benchmark/DoubleEndedQueue/remove.ts",
"benchmark_removeOne": "ts-node benchmark/DoubleEndedQueue/removeOne.ts"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/joegiralt/vellichor.git"
},
"author": "Joseph Martin Giralt",
"license": "ISC",
"bugs": {
"url": "https://github.com/joegiralt/vellichor/issues"
},
"homepage": "https://github.com/joegiralt/vellichor#readme",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/chance": "^1.0.7",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.12",
"benchmark": "^2.1.4",
"codecov": "^3.7.1",
"denque": "^1.4.1",
"fast-check": "^1.18.1",
"jest": "^24.9.0",
"jest-chance": "^0.1.8",
"jsdoc": "^3.6.3",
"postman-jsdoc-theme": "0.0.3",
"ts-jest": "^26.5.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"jest": {
"globalSetup": "jest-chance"
},
"dependencies": {
"vellichor": "^1.0.1"
}
}