-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "safe-array-permutate",
"version": "2.0.1",
"description": "",
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coverage:ci": "jest --coverage",
"prettier:format": "prettier --config .prettierrc 'lib/**/*.ts' 'test/*.ts' --write",
"semantic-release": "semantic-release",
"lint": "eslint \"{test,lib}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/jalorenz/safe-array-permutate.git"
},
"author": "Jannik Lorenz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jalorenz/safe-array-permutate/issues"
},
"homepage": "https://github.com/jalorenz/safe-array-permutate#readme",
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@types/jest": "28.1.6",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"husky": "8.0.1",
"jest": "28.1.3",
"prettier": "2.8.7",
"semantic-release": "19.0.3",
"ts-jest": "28.0.7",
"typescript": "4.7.4"
},
"keywords": [
"permutation",
"safe",
"array",
"typescript",
"javascript"
]
}