-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 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
{
"name": "@sdeverywhere/cli",
"version": "0.7.40",
"description": "Contains the `sde` command line interface for the SDEverywhere tool suite.",
"type": "module",
"files": [
"src/**",
"!.DS_Store"
],
"bin": {
"sde": "src/main.js"
},
"scripts": {
"lint": "eslint . --max-warnings 0",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"precommit": "../../scripts/precommit",
"ci:build": "run-s lint prettier:check"
},
"dependencies": {
"@sdeverywhere/build": "^0.3.11",
"@sdeverywhere/compile": "^0.7.28",
"byline": "^5.0.0",
"ramda": "^0.27.0",
"shelljs": "^0.10.0",
"strip-bom": "^5.0.0",
"yargs": "^17.5.1"
},
"engines": {
"node": ">=20"
},
"author": "Climate Interactive",
"license": "MIT",
"homepage": "https://sdeverywhere.org",
"repository": {
"type": "git",
"url": "https://github.com/climateinteractive/SDEverywhere.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/climateinteractive/SDEverywhere/issues"
}
}