-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·46 lines (46 loc) · 1.47 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
{
"name": "@bluelibs/ordered-lists",
"version": "1.0.0",
"description": "Performance-focused in-memory append-only ordered lists",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/bluelibs/bluelibs"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"benchmark": "ts-node ./src/benchmarks/index.ts",
"pretest": "npm run build",
"test": "jest --verbose dist/__tests__/index.js",
"test:dev": "jest --verbose src/__tests__/index.ts --watch",
"test:clean": "jest --clearCache",
"testonly": "npm test",
"test:ci": "npm run coverage -- --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"coverage": "npm test -- --coverage",
"coverage:upload": "codecov",
"prepublishOnly": "npm run build",
"gen-doc": "typedoc ./src/index.ts --exclude ./src/__tests__ --out typeDocs --tsconfig tsconfig.json"
},
"devDependencies": {
"@types/graphql": "^0.11.3",
"@types/jest": "^27.0.1",
"@types/node": "^14.17.12",
"@typescript-eslint/eslint-plugin": "2.3.0",
"@typescript-eslint/parser": "2.3.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-prettier": "3.1.1",
"jest": "^27.0.0",
"jest-junit": "^10.0.0",
"prettier": "^2.0.5",
"source-map-support": "^0.5.13",
"ts-jest": "^27.0.3",
"typescript": "^4.0.2"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"license": "MIT"
}