-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "rndjs",
"version": "2.0.2",
"description": "Random values generator",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"format": "prettier --write 'src/**/*.{ts,js}'",
"format:check": "prettier --check 'src/**/*.{js,ts}'",
"lint": "eslint 'src/**/*.{js,ts}'",
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vcgtz/rndjs.git"
},
"keywords": [
"random",
"random-values",
"generator",
"random-words",
"words",
"colors",
"random-colors",
"dice",
"nodejs",
"typescript"
],
"author": "Vicente Gutiérrez <gtz.rvera@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vcgtz/rndjs/issues"
},
"homepage": "https://github.com/vcgtz/rndjs#readme",
"devDependencies": {
"@jest/globals": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.0.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}