canihazusername/package.json

36 lines
961 B
JSON
Raw Normal View History

2019-02-09 19:09:04 +01:00
{
"name": "canihazusername",
2019-02-09 19:15:08 +01:00
"version": "1.0.3",
2020-02-05 21:21:51 +01:00
"description": "username generator. typed, simple and customizable",
2019-02-09 19:09:04 +01:00
"main": "./lib/index.js",
2020-02-05 21:21:51 +01:00
"types": "./lib/index.d.ts",
2019-02-09 19:09:04 +01:00
"scripts": {
2020-02-05 21:21:51 +01:00
"generate": "git -C ./generate/wordlist pull && node ./generate/wordlist.js",
2019-02-09 19:09:04 +01:00
"dev": "webpack -d -w",
"build": "webpack -p",
"test": "mocha",
2020-02-05 21:21:51 +01:00
"prepublishOnly": "npm run build && npm run test"
2019-02-09 19:09:04 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/CupCakeArmy/canihazusername.git"
},
"keywords": [
2020-02-05 21:21:51 +01:00
"username",
"generator",
"types",
"customizable"
2019-02-09 19:09:04 +01:00
],
"author": "Niccolo Borgioli",
"license": "MIT",
"bugs": {
"url": "https://github.com/CupCakeArmy/canihazusername/issues"
},
"homepage": "https://github.com/CupCakeArmy/canihazusername#readme",
"dependencies": {},
"devDependencies": {
2020-02-05 21:21:51 +01:00
"parcel-bundler": "^1.12.4",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "3.7"
2019-02-09 19:09:04 +01:00
}
2020-02-05 21:21:51 +01:00
}