-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.2 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.2 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
48
49
50
{
"name": "array-table-sort",
"version": "1.0.2",
"description": "Sort an array (asc, desc) that holds data for tables",
"main": "./lib/index.js",
"repository": "https://www.github.com/aichbauer/node-array-table-search",
"author": "Aichbauer Lukas <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"pretest": "yarn run build && yarn run lint",
"lint": "eslint src",
"test": "jest --coverage",
"build": "rm -rf lib && babel src --out-dir lib",
"prepush": "yarn run test",
"prepublish": "yarn run build"
},
"keywords": [
"array",
"table",
"sort",
"asc",
"desc",
"array-table-sort",
"column",
"row"
],
"jest": {
"globals": {
"__DEV__": true
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-0",
"babel-jest": "^26.6.3",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^0.14.3",
"jest": "^26.6.3",
"regenerator-runtime": "^0.12.1"
}
}