-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "@sdeverywhere/cli",
"version": "0.7.27",
"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.6",
"@sdeverywhere/compile": "^0.7.20",
"bufx": "^1.0.5",
"byline": "^5.0.0",
"ramda": "^0.27.0",
"shelljs": "^0.8.3",
"yargs": "^17.5.1"
},
"engines": {
"node": ">=18"
},
"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"
}
}