-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.65 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.65 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "oid-generator",
"version": "1.0.4",
"description": "A lightweight utility that allows you to easily generate an ObjectId",
"bin": {
"oid": "./bin/oid"
},
"keywords": [
"mongodb",
"objectid",
"generate",
"cli"
],
"author": "Phellipe Andrade",
"bugs": {
"url": "https://github.com/phellipeandrade/oid-generator/issues"
},
"homepage": "https://github.com/phellipeandrade/oid-generator/#readme",
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "npm run build && jest",
"coverage": "npm test -- --coverage"
},
"dependencies": {
"clipboardy": "^1.2.3"
},
"devDependencies": {
"@types/clipboardy": "^1.1.0",
"@types/node": "^22.15.30",
"babel-cli": "^6.14.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.13.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.14.0",
"chai": "^4.1.2",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^11.2.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"fs-extra": "^0.30.0",
"jest": "^22.3.0",
"regenerator-runtime": "^0.11.1",
"typescript": "^5.8.3",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^1.13.2",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dashboard": "^1.1.1",
"webpack-dev-server": "^1.16.1",
"webpack-node-externals": "^1.6.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/phellipeandrade/oid-generator.git"
}
}