-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 962 Bytes
/
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
{
"name": "github-username-regex",
"version": "1.0.0",
"description": "A regular expression that only matches a valid Github username",
"repository": "shinnn/github-username-regex",
"author": "Shinnosuke Watanabe (https://github.com/shinnn)",
"scripts": {
"prebuild": "eslint --fix --format=codeframe module.js test.js",
"build": "rollup --config=node:module --no-strict",
"pretest": "npm run-script build",
"test": "node --throw-deprecation test.js"
},
"license": "CC0-1.0",
"module": "module.js",
"files": [
"index.js",
"module.js"
],
"keywords": [
"github",
"name",
"username",
"login",
"account",
"validate",
"validation",
"match",
"regex",
"regexp"
],
"devDependencies": {
"@shinnn/eslint-config-node": "^3.0.0",
"eslint": "^3.13.1",
"rollup": "^0.41.4",
"rollup-config-module": "^1.0.0"
},
"eslintConfig": {
"extends": "@shinnn/node"
}
}