-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 KB
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": "ts-array-sort",
"version": "1.0.10",
"description": "A simple array sorter built on typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "jest",
"build": "npx tsc",
"lint": "eslint \"src/**/*.{js,ts}\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"version": "npm run format && git add -A src"
},
"keywords": [
"typescript",
"array",
"sort"
],
"author": "Chris Sullivan",
"repository": {
"type": "git",
"url": "git+https://github.com/sullyTheDev/ts-array-sort.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/sullyTheDev/ts-array-sort/issues"
},
"homepage": "https://github.com/sullyTheDev/ts-array-sort#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.2"
}
}