-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.76 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
{
"name": "array-sort-by",
"version": "1.2.1",
"description": "Powerful mechanism to sort arrays or array of objects by one or more properties. A custom comparer function may be used also.",
"author": "David Rivera <[email protected]>",
"main": "dist/sort-by.js",
"module": "src/sort-by.js",
"browser": "dist/sort-by.min.js",
"unpkg": "dist/sort-by.min.js",
"keywords": [
"array",
"sort",
"sorting",
"order",
"ordered",
"arrange",
"asc",
"ascending",
"desc",
"descending",
"multiple",
"object",
"prop",
"property",
"properties",
"javascript"
],
"repository": {
"url": "git+https://github.com/jherax/array-sort-by.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/jherax/array-sort-by/issues"
},
"homepage": "https://github.com/jherax/array-sort-by#readme",
"scripts": {
"eslint": "eslint src || true",
"eslint:test": "eslint test --config test/.eslintrc.json || true",
"pretest": "npm run build && npm run eslint:test",
"test": "ava --verbose --fail-fast test/**/*.js",
"build": "webpack --bail --config webpack/build.js"
},
"license": "ISC",
"dependencies": {
"core-js": "^2.5.3"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.18",
"eslint": "^4.18.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-ava": "^4.5.1",
"eslint-plugin-import": "^2.8.0",
"uglifyjs-webpack-plugin": "^1.2.0",
"webpack": "^3.11.0"
},
"optionalDependencies": {
"ajv": "^6.1.1"
},
"ava": {}
}