This repository was archived by the owner on Nov 15, 2019. It is now read-only.
forked from sindresorhus/username
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.35 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.35 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@valudio/username",
"version": "2.2.6",
"description": "Get the username of the current user",
"repository": "https://github.com/valudio/username",
"author": "Valudio <development@valudio.com>",
"license": "MIT",
"typings": "dist/index.d.ts",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc",
"pretest": "npm run build",
"lint": "tslint '*.ts'",
"test": "jest --coverage",
"version": "npm run build",
"postversion": "npm publish --access=public",
"rls": "npm --no-git-tag-version version",
"rls:patch": "npm run rls -- patch",
"rls:minor": "npm run rls -- minor",
"rls:major": "npm run rls -- major"
},
"keywords": [
"username",
"user",
"login",
"name",
"logname",
"lname",
"whoami",
"shell",
"env",
"var",
"environment",
"variable"
],
"dependencies": {
"@types/node": "^7.0.3",
"execa": "^0.6.0",
"mem": "^1.1.0",
"spawn-sync": "^1.0.15",
"try-thread-sleep": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^19.2.0",
"jest": "^19.0.2",
"rimraf": "^2.5.4",
"tslint": "^4.3.1",
"typescript": "^2.2.1"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/typings/"
]
}
}