-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 945 Bytes
/
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
{
"name": "flex-cli",
"description": "Sharetribe Flex CLI",
"version": "1.13.0",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/sharetribe/flex-cli"
},
"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.8.58"
},
"dependencies": {
"chalk": "^2.4.2",
"form-data": "^2.5.1",
"inquirer": "^6.2.2",
"mkdirp": "^0.5.1",
"open": "6.4.0",
"rimraf": "^3.0.0",
"xmlhttprequest": "^1.8.0"
}
}