-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 929 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
{
"name": "npm-usernames-by-email",
"description": "look up npm usernames by email address",
"version": "0.0.0-development",
"main": "index.json",
"bin": {
"npm-username": "cli.js",
"npm-usernames-by-email": "cli.js"
},
"license": "MIT",
"devDependencies": {
"jest": "^22.4.3",
"owner-profiles": "^2.3200.0",
"standard": "^11.0.1",
"standard-markdown": "^4.0.2",
"semantic-release": "^15.1.6",
"travis-deploy-once": "^4.4.1"
},
"scripts": {
"test": "jest && standard --fix && standard-markdown",
"watch": "jest --watch --notify --notifyMode=change --coverage",
"build": "node script/build.js",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"standard": {
"env": {
"jest": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/nice-registry/npm-usernames-by-email.git"
}
}