-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.61 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
{
"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":
"babel-node ./scripts/emptyFolder && webpack --config ./webpack.prod.config.js",
"test": "jest",
"coverage": "npm test -- --coverage"
},
"dependencies": {
"clipboardy": "^1.2.3"
},
"devDependencies": {
"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",
"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"
}
}