This repository has been archived by the owner on Oct 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
67 lines (67 loc) · 1.76 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
{
"name": "tasksfile",
"version": "5.1.1",
"description": "Minimalistic task runner for node.js",
"keywords": [
"build",
"system",
"make",
"tool"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"task": "bin/task.js"
},
"scripts": {
"lint": "tslint -c tslint.json 'src/*.ts' 'test/**/*.ts'",
"build": "tsc",
"test": "yarn lint && yarn build && yarn clean:sandbox && jest --coverage",
"test:unit": "jest ./src/",
"test:e2e": "jest ./test/",
"clean": "rm -rf node_modules && yarn clean:build && yarn clean:sandbox",
"clean:build": "rm -rf ./lib",
"clean:sandbox": "rm -rf ./test/e2e/sandbox/node_modules && mkdir -p ./test/sandbox/node_modules/.bin",
"sandbox:task": "cd ./test/sandbox && ../../bin/task.js"
},
"lint-staged": {
"src/*.{ts,tsx}": [
"tslint --fix",
"git add"
]
},
"engines": {
"node": ">=6.11.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pawelgalazka/tasksfile.git"
},
"author": "Pawel Galazka",
"license": "MIT",
"bugs": {
"url": "https://github.com/pawelgalazka/tasksfile/issues"
},
"homepage": "https://github.com/pawelgalazka/tasksfile#readme",
"dependencies": {
"@pawelgalazka/cli": "2.0.3",
"@pawelgalazka/shell": "2.0.0",
"chalk": "2.3.0"
},
"devDependencies": {
"@babel/core": "7.2.2",
"@babel/preset-env": "7.3.1",
"@babel/preset-typescript": "7.1.0",
"@types/jest": "24.0.0",
"@types/lodash.padend": "4.6.4",
"@types/node": "10.12.18",
"husky": "1.3.1",
"jest": "24.1.0",
"lint-staged": "8.1.0",
"prettier": "1.15.3",
"tslint": "5.12.1",
"tslint-config-prettier": "1.17.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.2.2"
}
}