This repository was archived by the owner on Mar 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.32 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.32 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@boldr/cli",
"version": "0.2.0-beta.2",
"description": "Command line tools for Boldr apps",
"main": "bin/boldr.js",
"bin": {
"boldr": "./bin/boldr.js"
},
"files": [
"bin",
"static",
"lib"
],
"keywords": [
"cli",
"boldr"
],
"license": "MIT",
"author": {
"name": "Steven Truesdell",
"email": "steven@strues.io",
"url": "strues.io"
},
"homepage": "https://github.com/strues/boldr#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/strues/boldr.git"
},
"bugs": {
"url": "https://github.com/strues/boldr/issues"
},
"scripts": {
"build": "rm -rf ./lib && NODE_ENV=production babel src --out-dir lib",
"test": "echo \"No tests... skipping\" && exit 0",
"test:ci": "echo \"No tests... skipping\" && exit 0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"fast-async": "^6.3.0"
},
"dependencies": {
"@boldr/config": "^0.1.2",
"@boldr/tools": "^0.1.0-beta.5",
"@boldr/utils": "0.1.2",
"caporal": "^0.7.0",
"pify": "3.0.0",
"fs-extra": "^4.0.2",
"update-notifier": "^2.3.0",
"knex": "^0.13.0",
"pg": "^7.3.0",
"jsonfile": "4.0.0",
"execa": "0.8.0",
"rimraf": "^2.6.2"
}
}