-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.56 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@kourge/ordering",
"version": "2.0.0-rc.0",
"description": "A set of comparator functions, as well as tools for manipulating, projecting, and combining them",
"main": "index.js",
"files": [
"*.d.ts",
"*.d.ts.map",
"*.js",
"*.js.map"
],
"scripts": {
"test": "jest",
"build": "tsc --build tsconfig.build.json --verbose",
"clean": "tsc --build tsconfig.build.json --clean",
"prepublishOnly": "npm-run-all clean build",
"docs:update": "npm-run-all docs:clean docs:build",
"docs:build": "typedoc",
"docs:clean": "rm -r ./docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kourge/ordering.git"
},
"keywords": [
"sort",
"sorting function",
"comparator",
"comparison function",
"utility"
],
"author": {
"name": "Wil Lee",
"email": "kourge@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kourge/ordering/issues"
},
"homepage": "https://github.com/kourge/ordering#readme",
"devDependencies": {
"@types/jest": "^25.2.1",
"jest": "^25.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"ts-jest": "^25.3.1",
"typedoc": "^0.17.4",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.8.3"
},
"sideEffects": false,
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"arrowParens": "avoid",
"proseWrap": "always"
},
"jest": {
"preset": "ts-jest"
}
}