forked from oculus42/short-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.08 KB
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
{
"name": "short-uuid",
"version": "4.2.0",
"description": "Create and translate standard UUIDs with shorter formats.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"test": "npx tape test/**/*.js",
"snyk-test": "snyk test",
"snyk-protect": "snyk protect",
"prepublishOnly": "npm run snyk-protect"
},
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oculus42/short-uuid.git"
},
"keywords": [
"uuid",
"guid",
"uid",
"node"
],
"author": "Samuel Rouse",
"license": "MIT",
"bugs": {
"url": "https://github.com/oculus42/short-uuid/issues"
},
"homepage": "https://github.com/oculus42/short-uuid#readme",
"dependencies": {
"any-base": "^1.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nyc": "^15.1.0",
"snyk": "^1.595.0",
"tape": "^5.2.2"
},
"snyk": true
}