-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "the-big-username-blacklist",
"version": "1.5.2",
"description": "This is a opinionated blacklist of words that you might not like to see used as usernames in your service.",
"main": "lib/index.js",
"scripts": {
"build:lib": "babel src/ --out-dir lib --ignore test,global.js",
"build:test": "babel src/test --out-dir test",
"build:dist": "webpack",
"build": "npm run build:lib && npm run build:test",
"test": "mocha --reporter spec test",
"hint": "jshint src"
},
"repository": {
"type": "git",
"url": "https://github.com/marteinn/The-Big-Username-Blacklist-JS.git"
},
"keywords": [
"username",
"blacklist"
],
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-loader": "6.4.1",
"babel-preset-es2015": "6.24.1",
"jshint": "2.9.4",
"mocha": "3.2.0",
"webpack": "1.14.0"
},
"author": "Martin Sandström",
"license": "MIT",
"bugs": {
"url": "https://github.com/marteinn/The-Big-Username-Blacklist-JS/issues"
},
"homepage": "https://github.com/marteinn/The-Big-Username-Blacklist-JS"
}