-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.31 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "anysort-typed",
"description": "Flexible and Full Typed multi-properties sorter for nested objects",
"version": "3.3.1",
"homepage": "https://github.com/Lionad-Morotar/anysort",
"repository": {
"type": "git",
"url": "git+https://github.com/Lionad-Morotar/anysort.git"
},
"license": "MIT",
"main": "build/index.min.js",
"types": "build/types/index.d.ts",
"scripts": {
"prebuild": "rimraf build/index.*",
"build": "cross-env NODE_ENV=production rollup -c && cross-env NODE_ENV=development rollup -c",
"prebuild:types": "rimraf build/types",
"build:types": "tsc",
"build:all": "npm run build:types | npm run build",
"test": "cross-env NODE_ENV=production nyc mocha ./test/index",
"coverage:badge": "coverage-badge-creator",
"watch:test": "npm-watch test",
"preversion": "npm run build && npm run build:types && npm test",
"version": "git add -A build",
"postversion": "git push && git push --tags"
},
"watch": {
"test": {
"patterns": [
"build",
"test"
],
"runOnChangeOnly": true,
"extensions": "js",
"quiet": true
}
},
"nyc": {
"extension": [
".js"
],
"exclude": [
"test/"
],
"reporter": [
"text",
"json-summary"
]
},
"files": [
"build/**/*",
"README.md",
"statics/*"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.2.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"coverage-badge-creator": "^1.0.11",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"mocha": "^2.5.3",
"npm-watch": "^0.7.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.38.5",
"rollup-plugin-minize": "^2.1.0",
"rollup-plugin-uglify": "^6.0.4",
"should": "^8.4.0",
"tslib": "^2.1.0",
"typescript": "^4.6.3"
},
"keywords": [
"any",
"array",
"multiple",
"nested",
"object",
"order",
"multy-properties",
"property",
"sort",
"sorting",
"sorter"
]
}