-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 2.05 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
73
74
75
76
{
"name": "generate-api-key",
"description": "A library for generating random API key/access tokens",
"version": "1.0.2",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"REST",
"RESTful",
"API",
"access",
"token",
"key"
],
"author": "Paul Proctor <paulproctorjr@gmail.com>",
"homepage": "https://github.com/pauldenver/generate-api-key",
"repository": {
"type": "git",
"url": "https://github.com/pauldenver/generate-api-key.git"
},
"bugs": {
"url": "https://github.com/pauldenver/generate-api-key/issues"
},
"files": [
"dist"
],
"scripts": {
"build": "run-s build:clean build:main",
"build:main": "tsc -p tsconfig.json",
"build:clean": "shx rm -rf ./dist ./coverage ./.nyc_output",
"build:watch": "tsc -p tsconfig.json -w",
"lint:fix": "eslint ./{src,test}/**/*.ts --fix",
"test:lint": "eslint ./{src,test}/**/*.ts",
"test:unit": "mocha --config .mocharc.json",
"test:unit:build": "cross-env TEST_BUILD=true mocha --config .mocharc.json",
"test:cov": "nyc mocha --config .mocharc.json",
"test:coveralls": "nyc report --reporter=text-lcov | coveralls",
"test:spelling": "cspell -c .cspell.json",
"test:types": "tsd"
},
"dependencies": {
"base-x": "^4.0.0",
"chance": "^1.1.8",
"rfc4648": "^1.5.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chance": "^1.1.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.6",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cspell": "^6.3.0",
"eslint": "^8.20.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tsd": "^0.22.0",
"typescript": "^4.7.4"
},
"tsd": {
"directory": "test/types"
},
"engines": {
"node": ">=14"
},
"license": "Apache-2.0"
}