This repository has been archived by the owner on Dec 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.17 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "executor",
"version": "1.0.6",
"license": "MIT",
"description": "A powerful \"short-cutter\" to your console to you and your team!",
"scripts": {
"test": "mocha test/**/*.spec.js -R nyan",
"watch": "npm test -- --watch",
"lint": "eslint \"bin/x.js\" \"lib/**/*.js\" --fix",
"test-ci": "mocha test/**/*.spec.js -R min",
"test-docker": "mocha test/docker/docker.js -R min --timeout 150000",
"coverage": "nyc --reporter=html --reporter=text npm run test-ci --timeout=3000",
"postcoverage": "shx rm -rf .nyc_output",
"coverage-ci": "nyc --reporter=text-lcov npm run test-ci | codacy-coverage",
"test-full": "npm run lint && npm run coverage && npm run test-docker",
"preversion": "npm run test-full",
"prepublishOnly": "npm version patch && pkg-ok"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.4.0",
"husky": "^3.0.5",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"pkg-ok": "^2.3.1",
"shx": "^0.3.2"
},
"files": [
"bin",
"docs",
"lib",
"package.json",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"nyc": {
"include": [
"lib/**/*.js"
],
"exclude": [],
"sourceMap": false,
"instrument": true,
"per-file": false,
"lines": 98,
"statements": 98,
"functions": 98,
"branches": 98,
"check-coverage": true,
"include-all-sources": true,
"cache": true,
"all": true
},
"main": "./bin/x.js",
"bin": {
"x": "./bin/x.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run test-ci",
"pre-push": "npm run test-full"
}
},
"keywords": [
"executor",
"shortcut",
"shortcuts",
"terminal",
"console",
"easy",
"runner",
"package.json",
"package-json",
"npm",
"script",
"tool",
"nodejs",
"x"
],
"authors": [
"Crystian 'pusher' Bietti <crystian@gmail.com> (https://www.linkedin.com/in/crystian)"
],
"directories": {
"lib": "lib",
"bin": "bin",
"man": "docs",
"test": "test"
},
"repository": {
"url": "git+https://github.com/crystian/executor.git",
"type": "git"
},
"homepage": "https://github.com/crystian/executor",
"bugs": {
"url": "https://github.com/crystian/executor/issues"
},
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
},
"dependencies": {}
}