-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "ssid",
"version": "1.1.2",
"description": "Generate secure and unique short IDs in JavaScript, tested for reliability and compatibility with browsers",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"test:node": "ava test/node.test.js",
"test:react": "jest test/react.test.js",
"test:all": "npm run test:node && npm run test:react",
"benchmark": "node test/benchmark.test.js"
},
"keywords": [
"ssid",
"secure-short-id",
"short",
"shortid",
"secure",
"nanoid",
"uuid",
"crypto"
],
"author": "Rohit Yadav",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rohitnirban/ssid.git"
},
"devDependencies": {
"@babel/preset-env": "^7.26.8",
"@babel/preset-react": "^7.26.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"ava": "^6.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"dependencies": {
"benchmark": "^2.1.4",
"nanoid": "^3.3.7",
"shortid": "^2.2.16",
"uuid": "^9.0.0"
}
}