-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.01 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
{
"name": "overrun",
"description": "Overrun is a framework for setting up asset pipelines in Node.js.",
"version": "0.8.2",
"main": "./dist/index.js",
"scripts": {
"build": "tsc --project ./src/tsconfig.json",
"build:doc": "typedoc --plugin typedoc-plugin-markdown",
"clean": "rm -r dist",
"clean:doc": "rm -r docs/api",
"demo": "./bin/overrun.js -f ./pipeline.ts --cwd ./test/",
"demo:watch": "./bin/overrun.js -f ./pipeline.ts --cwd ./test/ --watch --verbose",
"format": "prettier --write src",
"lint": "eslint ./src",
"prepublish": "npm run build",
"test": "npm run test:compile && npm run test:unit",
"test:compile": "tsc --noEmit --project ./src/tsconfig.json",
"test:unit": "vitest run --coverage",
"test:watch": "vitest --watch"
},
"author": "Talin <[email protected]>",
"license": "MIT",
"bin": {
"overrun": "bin/overrun.js"
},
"types": "./dist/index.d.ts",
"files": [
"bin",
"dist",
"docs",
"overrun.d.ts",
"src"
],
"devDependencies": {
"@types/node": "^18.14.6",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"@vitest/coverage-c8": "^0.29.2",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.23.4",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typedoc": "^0.23.26",
"typedoc-plugin-markdown": "^3.11.12",
"typescript": "^4.3.5",
"vitest": "^0.29.2"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"chokidar": "^3.5.3",
"fast-glob": "^3.2.7",
"yargs": "^17.7.1"
},
"peerDependencies": {
"typescript": "^4.0"
},
"directories": {
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viridia/overrun.git"
},
"keywords": [
"node.js",
"task",
"runner",
"build",
"pipeline"
],
"bugs": {
"url": "https://github.com/viridia/overrun/issues"
},
"homepage": "https://github.com/viridia/overrun#readme"
}