-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.36 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.36 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
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
{
"name": "taskfile",
"version": "0.10.0",
"description": "Yet another attempt at a simple task runner for npm with parallelisation support using bash commands via YAML.",
"main": "./src/index.mjs",
"directories": {
"test": "tests"
},
"scripts": {
"build": "webpack && prepend bin/index.js '#!/usr/bin/env node\n\n'",
"test": "npm run spec && npm run lint",
"spec": "NODE_ENV= nyc ava && npm run report",
"lint": "xo src/*.js",
"report": "nyc report --reporter=html"
},
"bin": {
"taskfile": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Wildhoney/Taskfile.git"
},
"keywords": [
"taskfile",
"tasks",
"npm",
"run",
"scripts",
"build",
"test"
],
"author": "Adam Timberlake <adam.timberlake@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Wildhoney/Taskfile/issues"
},
"homepage": "https://github.com/Wildhoney/Taskfile#readme",
"dependencies": {
"env-variable": "0.0.5",
"execa": "~1.0.0",
"inquirer": "~6.2.2",
"js-yaml": "~3.13.0",
"normalize-newline": "~3.0.0",
"orderly-queue": "~0.1.10",
"pretty-error": "~2.1.1",
"ramda": "~0.26.1",
"sort-by": "~1.2.0",
"spawn-sync": "~2.0.0",
"thread-sleep": "~2.2.0",
"try-thread-sleep": "~2.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"ava": "~1.4.1",
"babel-loader": "^8.0.5",
"coveralls": "~3.0.3",
"escope": "~3.6.0",
"esm": "~3.2.20",
"mock-fs": "~4.8.0",
"nyc": "~13.3.0",
"prepend-file-cli": "~1.0.6",
"webpack": "~4.29.6",
"webpack-cli": "~3.3.0",
"xo": "~0.24.0"
},
"ava": {
"files": [
"tests/*.test.js"
],
"require": [
"esm"
],
"babel": false
},
"xo": {
"space": 4,
"parser": "babel-eslint",
"esnext": true,
"globals": [
"window",
"document",
"self"
],
"rules": {
"no-negated-condition": "off",
"padded-blocks": "off",
"no-multi-spaces": "off",
"unicorn/no-process-exit": "off",
"object-curly-spacing": [
2,
"always"
],
"no-unused-expressions": "off",
"import/prefer-default-export": "off",
"no-duplicate-imports": "off"
}
}
}