-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.3 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": "order-by-sort",
"version": "0.3.1",
"description": "Takes an array of objects and sorts them by an arbitrary number of common string or number fields with control over direction and placement of null elements.",
"main": "lib/index.js",
"author": {
"name": "Thomas Strobl",
"email": "[email protected]",
"url": "https://thomas-strobl.com"
},
"scripts": {
"build": "tsc --declaration src/index.ts --outDir lib",
"test": "jest --config jest.json --coverage",
"benchmark": "node benchmark/index.js"
},
"files": [
"lib/index.js",
"lib/index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tom2strobl/order-by-sort.git"
},
"keywords": [
"postgres",
"pg",
"hasura",
"graphql",
"typescript",
"typed"
],
"license": "MIT",
"np": {
"2fa": false
},
"bugs": {
"url": "https://github.com/tom2strobl/order-by-sort/issues"
},
"homepage": "https://github.com/tom2strobl/order-by-sort#readme",
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"babel-jest": "^26.6.3",
"benny": "^3.7.0",
"jest": "^26.6.3",
"prettier": "^2.4.1",
"typescript": "^4.2.3"
}
}