-
Notifications
You must be signed in to change notification settings - Fork 64
/
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": "unique-names-generator",
"version": "4.7.1",
"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": "Andrea Sonny <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/andreasonny83/unique-names-generator.git"
},
"bugs": {
"url": "https://github.com/andreasonny83/unique-names-generator/issues"
},
"homepage": "https://github.com/andreasonny83/unique-names-generator#readme",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"all-contributors-cli": "^6.24.0",
"babel-jest": "^29.2.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.1",
"microbundle": "^0.15.1",
"np": "^7.6.2",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
}
}