canihazusername/package.json

38 lines
1.0 KiB
JSON
Raw Normal View History

2019-02-09 19:09:04 +01:00
{
"name": "canihazusername",
2020-02-05 22:48:14 +01:00
"version": "2.0.0",
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",
2020-02-06 10:12:10 +01:00
"docs": "parcel build --no-source-maps --out-dir ./docs --public-url ./ ./website/index.html",
2020-02-05 22:48:14 +01:00
"build": "tsc",
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",
2020-02-05 22:48:14 +01:00
"dependencies": {
"bulma": "^0.8.0",
"tachyons": "^4.11.1"
},
2019-02-09 19:09:04 +01:00
"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
}