forked from smart-table/smart-table-sort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "smart-table-sort",
"version": "1.1.0",
"description": "takes a sort configuration object and returns a sort function operating on arrays",
"main": "dist/",
"module": "index.js",
"jsnext:main": "index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rollup -c ./rollup/build.js && rollup -c ./rollup/cdn.js",
"test": "xo index.js && rollup -c ./test/rollup.config.js | node | tap-diff"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smart-table/smart-table-sort.git"
},
"keywords": [
"sort",
"smart-table",
"array"
],
"author": "Laurent Renard",
"license": "MIT",
"bugs": {
"url": "https://github.com/smart-table/smart-table-sort/issues"
},
"homepage": "https://github.com/smart-table/smart-table-sort#readme",
"dependencies": {
"smart-table-json-pointer": "^1.0.3",
"smart-table-operators": "^2.0.4"
},
"devDependencies": {
"rollup": "^0.58.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"tap-diff": "^0.1.1",
"xo": "^0.20.3",
"zora": "^2.0.1"
}
}