-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.83 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
{
"name": "@rksan/random-string",
"description": "Generate random string",
"version": "0.1.0",
"main": "dist/index.js",
"types": "types-defines/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"tsc:init": "tsc --init",
"pretest": "rm -rf .nyc_output && rm -rf tsconfig.tsnode.json && tsc -p ./tsconfig.json --showConfig > tsconfig.tsnode.json",
"test": "nyc ts-mocha --paths -p ./tsconfig.tsnode.json test/**/*.spec.ts",
"precoverage": "rm -rf coverage && mkdir coverage",
"coverage": "npm run test && nyc report --reporter=lcovonly",
"prebuild:ts": "rm -rf dist && rm -rf types-defines",
"build:ts": "tsc -d -p ./tsconfig.build.json && tsc-alias -p ./tsconfig.build.json",
"build": "npm run build:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rksan/random-string.git"
},
"keywords": [
"random",
"string"
],
"author": "rksan",
"license": "MIT",
"bugs": {
"url": "https://github.com/rksan/random-string/issues"
},
"homepage": "https://github.com/rksan/random-string#readme",
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@types/chai": "^4.3.6",
"@types/eslint": "^8.44.2",
"@types/mocha": "^10.0.1",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"chai": "^4.3.8",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsonc": "^2.9.0",
"eslint-plugin-prettier": "^5.0.0",
"jsonc-eslint-parser": "^2.3.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.2.2"
}
}