-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 954 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 954 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
{
"name": "flex-cli",
"description": "Sharetribe Flex CLI",
"version": "1.16.0-beta.3",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sharetribe/flex-cli"
},
"engines": {
"node": ">=18"
},
"bin": {
"flex-cli": "target/min.js"
},
"files": [
"target/min.js"
],
"scripts": {
"clean": "rm -rf target/*",
"dev": "node target/dev.js",
"compile": "shadow-cljs compile min",
"release": "shadow-cljs release min",
"test": "shadow-cljs compile test-once && node target/test-once.js",
"test-compile": "shadow-cljs compile test-once",
"test-run": "node target/test-once.js",
"test-autorun": "shadow-cljs watch test-autorun"
},
"devDependencies": {
"shadow-cljs": "2.15.12"
},
"dependencies": {
"chalk": "^2.4.2",
"inquirer": "^6.2.2",
"mkdirp": "^0.5.1",
"open": "6.4.0",
"rimraf": "^3.0.0",
"yauzl": "3.2.0"
}
}