forked from joaomoreno/unique-names-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.79 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
{
"name": "@joaomoreno/unique-names-generator",
"version": "5.1.0",
"description": "Generate unique and memorable names",
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "eslint --ext .ts ./src",
"test": "npm run format && npm run lint && jest --coverage",
"test:watch": "jest --coverage --watchAll",
"format": "prettier --write src/**/*.ts",
"prebuild": "rimraf dist && npm run format",
"build": "microbundle",
"prepublishOnly": "npm run build",
"prerelease": "npm run build",
"release": "np"
},
"sideEffects": false,
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"module": "dist/index.m.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"tags": [
"name-generator",
"unique-names",
"typescript"
],
"files": [
"dist"
],
"private": false,
"author": "João Moreno <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/joaomoreno/unique-names-generator.git"
},
"bugs": {
"url": "https://github.com/joaomoreno/unique-names-generator/issues"
},
"homepage": "https://github.com/joaomoreno/unique-names-generator#readme",
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"all-contributors-cli": "^6.20.0",
"babel-jest": "^27.5.1",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"microbundle": "^0.14.2",
"np": "^7.6.0",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.5"
}
}