-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "string-shuffle",
"version": "1.2.4",
"description": "A JS module for shuffling strings and other helper methods like alhpabet generation",
"main": "./build/index.js",
"scripts": {
"ignore": "yarn ngitignore create",
"test": "jest --coverage -u",
"lint": "eslint . --ext .ts,.tsx,.mjs,.js,.jsx,.cjs ",
"lint:fix": "eslint . --ext .ts,.tsx,.mjs,.js,.jsx,.cjs --fix",
"build": "tsc",
"prebuild": "rimraf ./build && rimraf ./dist && rimraf ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forinda/string-shuffle.git"
},
"keywords": [
"shuffle",
"shufflejs",
"alphabet",
"strings",
"random",
"math",
"lowercase",
"password"
],
"author": "Felix Orinda",
"license": "MIT",
"bugs": {
"url": "https://github.com/forinda/string-shuffle/issues"
},
"homepage": "https://github.com/forinda/string-shuffle#readme",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@types/jest": "^28.1.0",
"@types/node": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-jest": "^28.1.0",
"eslint": "^8.16.0",
"jest": "^28.1.0",
"ngitignore": "^3.0.1",
"rimraf": "^3.0.2",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"types": "./build/index.d.ts",
"dependencies": {
"tslib": "^2.4.0"
}
}