forked from philihp/sort-unwind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.47 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
{
"name": "sort-unwind",
"version": "0.0.2",
"description": "Sorts an array and then unwinds that sort on another array",
"author": "Philihp Busby <[email protected]>",
"license": "MIT",
"main": "./dist/index.js",
"scripts": {
"build": "babel src -d dist",
"lint": "eslint src",
"prepare": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"files": [
"/dist/",
"!/dist/**/__tests__/*.js"
],
"keywords": [
"functional",
"array",
"undo",
"sort"
],
"dependencies": {
"ramda": "0.27.1"
},
"devDependencies": {
"@babel/cli": "7.13.0",
"@babel/core": "7.13.8",
"@babel/preset-env": "7.13.9",
"@philihp/eslint-config": "4.2.0",
"fast-shuffle": "4.3.0",
"husky": "5.1.3",
"lint-staged": "10.5.4",
"prettier": "2.2.1"
},
"homepage": "https://github.com/philihp/sort-unwind#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/philihp/sort-unwind.git"
},
"bugs": {
"url": "https://github.com/philihp/sort-unwind/issues"
},
"jest": {
"modulePathIgnorePatterns": [
"dist/"
]
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"eslint --fix"
]
},
"prettier": {
"singleQuote": true,
"semi": false,
"trailingComma": "es5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": [
"@philihp"
]
}
}