-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.8 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
{
"name": "property-sort",
"version": "2.1.0",
"description": "Sort an array by its property",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"cleanup": "rm -rf ./dist",
"build": "npm run cleanup && tsc",
"deploy:latest": "npm run build && npm publish",
"deploy:next": "npm run build && npm publish --tag next",
"lint": "eslint . --ext .ts",
"bump:major": "standard-version --release-as=major",
"bump:minor": "standard-version --release-as=minor",
"bump:patch": "standard-version --release-as=patch",
"bump:pre:major": "standard-version --release-as=major --prerelease",
"bump:pre:next": "standard-version --prerelease next"
},
"dependencies": {
"language-code": "^1.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-typescript": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-jest": "^27.5.1",
"eslint": "^8.12.0",
"jest": "^27.5.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3"
},
"keywords": [
"typescript",
"javascript",
"property",
"sort",
"ordering",
"alphabetically",
"nummerically",
"ascending",
"descending",
"array"
],
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AronssonFredrik/property-sort.git"
},
"bugs": {
"url": "https://github.com/AronssonFredrik/property-sort/issues"
},
"homepage": "https://github.com/AronssonFredrik/property-sort#readme",
"author": "Fredrik Aronsson",
"license": "ISC"
}