forked from sullyTheDev/ts-array-sort
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.28 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
47
{
"name": "ts-array-sort",
"version": "1.0.4",
"description": "A simple array sorter built on typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"lint": "eslint \"*/**/*.{js,ts}\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push"
},
"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": {
"@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",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.2"
}
}