-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 873 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 873 Bytes
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
{
"name": "@pinefile/pinex",
"version": "1.0.1",
"description": "Experimental version of Pine",
"main": "src/index.ts",
"bin": {
"pinex": "bin/pinex"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc --build",
"lint": "eslint src --ext .ts",
"tsc": "tsc",
"test": "cd test && ../bin/pinex test && cd .."
},
"keywords": [
"build",
"system",
"make",
"tool",
"task",
"cli",
"runner",
"pipeline"
],
"author": "Fredrik Forsmo <fredrik.forsmo@gmail.com>",
"license": "MIT",
"dependencies": {
"@pinefile/pine": "^2.0.3"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"esbuild": "^0.21.0",
"esbuild-register": "^3.4.2",
"eslint": "^8.34.0",
"typescript": "^4.9.5"
}
}