-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "zoo-ids",
"version": "2.0.7",
"description": "Generate predictable and unique identifiers composed of adjectives and animal names",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "rollup -c && tsc",
"pretest": "eslint --ignore-path .gitignore .",
"test": "jest --collect-coverage",
"lint": "eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/bryanmylee/zoo-ids.git"
},
"keywords": [
"adjective",
"animal",
"generator",
"id",
"random",
"seed",
"style",
"unique",
"uuid",
"vanity"
],
"author": "Bryan Lee",
"license": "ISC",
"bugs": {
"url": "https://github.com/bryanmylee/zoo-ids/issues"
},
"homepage": "https://github.com/bryanmylee/zoo-ids#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.4.5",
"jest-extended": "^1.2.0",
"prettier": "^2.5.1",
"rollup": "^2.35.1",
"ts-jest": "^27.1.2",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}