-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "atom-password-generator",
"version": "0.5.0",
"description": "Password generator for Atom",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"author": {
"name": "volebo",
"url": "http://volebo.net"
},
"contributors": [
{
"name": "Maksim Koryukov",
"email": "[email protected]",
"url": "https://www.npmjs.com/~maxkoryukov"
},
{
"name": "Giovazz89",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/maxkoryukov/atom-password-generator.git"
},
"bugs": {
"url": "https://github.com/maxkoryukov/atom-password-generator/issues"
},
"homepage": "https://github.com/maxkoryukov/atom-password-generator",
"keywords": [
"atom",
"password",
"generator"
],
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"main": "./lib/password-generator",
"scripts": {
"test": "`npm bin`/mocha",
"test:atom": "atom --test ./lib/**/*.test.js",
"test:tag:fast": "`npm bin`/mocha --tags 'is:fast'",
"lint": "`npm bin`/eslint ./",
"coverage": "`npm bin`/nyc `npm bin`/mocha",
"coverage:report": "`npm bin`/nyc report"
},
"activationCommands": {},
"atomTestRunner": "./tests/runner.js",
"atomTestRunner___": "@atom/mocha-test-runner",
"dependencies": {},
"devDependencies___": {},
"devDependencies": {
"@atom/mocha-test-runner": "^1.6.0",
"@volebo/mocha-helpers": "^0.1.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-volebo": "^2.3.3",
"mocha": "^7.1.2",
"mocha-tags": "^1.0.1",
"nyc": "^15.0.1"
}
}