-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.38 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@boldr/cli",
"version": "0.1.0",
"description": "Commandline interface for Boldr",
"main": "lib/boldr-cli.js",
"license": "MIT",
"author": "Steven Truesdell <steven@strues.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/boldr/boldr-cli.git"
},
"bugs": "https://github.com/boldr/boldr-cli/issues",
"homepage": "https://github.com/boldr/boldr-cli#readme",
"files": [
"bin",
"lib"
],
"bin": {
"boldr": "bin/boldr.js"
},
"scripts": {
"build": "NODE_ENV=production npm run clean && babel src --out-dir lib",
"clean": "rimraf lib",
"format": "prettier --print-width=100 --single-quote=true --jsx-bracket-same-line=false --trailing-comma=all --write \"src/**/*.js\"",
"precommit": "lint-staged",
"prepublish": "npm run clean && npm run build",
"test": "jest"
},
"lint-staged": {
"*.js": [
"prettier --print-width=100 --single-quote=true --jsx-bracket-same-line=false --trailing-comma=all --write \"src/**/*.js\"",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/coverage/",
"/src/",
"/lib/"
]
},
"dependencies": {
"boldr-engine": "^0.1.1",
"boldr-utils": "^0.4.0-rc.1",
"caporal": "^0.6.0",
"chalk": "^1.1.3",
"change-case": "^3.0.1",
"cross-spawn": "^5.1.0",
"download-git-repo": "^1.0.1",
"execa": "^0.7.0",
"fs-extra": "^3.0.1",
"inquirer": "^3.1.1",
"load-json-file": "^2.0.0",
"lodash": "^4.17.4",
"ora": "^1.3.0",
"shelljs": "^0.7.8",
"simple-git": "^1.73.0",
"update-notifier": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-boldr": "^0.9.7",
"cz-conventional-changelog-emoji": "^0.1.0",
"eslint": "^4.0.0",
"eslint-config-boldr": "^0.10.3",
"fast-async": "^6.2.2",
"husky": "^0.13.4",
"jest": "^20.0.4",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4",
"rimraf": "^2.6.1"
},
"keywords": [
"boldr",
"cli",
"boldr-cli"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-emoji"
}
}
}