-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 1.04 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
{
"name": "stljs",
"version": "0.1.0",
"description": "Do you need a deque with O(1) for {push,pop}_{back,front} in JavaScript? We have some! It's STL for your {Type,Java}Script projects.",
"main": "build/src/index.js",
"repository": "https://github.com/vitkarpov/stljs",
"author": {
"name": "Viktor Karpov",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^24.0.12",
"@types/node": "^12.0.0",
"benchmarkjs": "^0.1.8",
"concurrently": "^4.1.0",
"gts": "^1.0.0",
"jest": "^24.8.0",
"prettier": "^1.17.0",
"ts-jest": "^24.0.2",
"typescript": "~3.4.0"
},
"scripts": {
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix && prettier 'src/*.ts' 'tests/*.ts' --write",
"test": "jest -c jest.config.js",
"benchmarks": "concurrently 'node benchmarks/deque-vs-array-shift.js' 'node benchmarks/deque-vs-array-unshift.js' 'node benchmarks/deque-vs-array-push.js' 'node benchmarks/deque-vs-array-pop.js'"
}
}