Skip to content

Commit 86ea654

Browse files
committed
sort pj
1 parent a8cb1d2 commit 86ea654

File tree

2 files changed

+40
-38
lines changed

2 files changed

+40
-38
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [0.6.0] - WIP
6+
- allow for programmatic use
67

78
## [0.5.0] - 2016-05-02
89
- bug fixes

package.json

Lines changed: 39 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,41 @@
11
{
2-
"name": "coderoad-cli",
3-
"version": "0.6.0",
4-
"description": "Command line interface for CodeRoad. Build project files.",
5-
"keywords": [
6-
"coderoad"
7-
],
8-
"directories": {
9-
"test": "test"
10-
},
11-
"scripts": {
12-
"test": "echo \"Error: no test specified\" && exit 1"
13-
},
14-
"author": "Shawn McKay <shawn.j.mckay@gmail.com>",
15-
"license": "ISC",
16-
"preferGlobal": true,
17-
"bin": {
18-
"coderoad": "lib/cli.js"
19-
},
20-
"files": [
21-
"setup",
22-
"lib",
23-
"package.json",
24-
"*.md"
25-
],
26-
"dependencies": {
27-
"atom-plugin-command-line": "1.0.2",
28-
"chalk": "1.1.3",
29-
"commander": "2.9.0",
30-
"lodash.kebabcase": "4.0.1",
31-
"node-file-exists": "1.1.0",
32-
"prompt": "1.0.0",
33-
"sort-package-json": "^1.4.0",
34-
"validate-npm-package-name": "2.2.2"
35-
},
36-
"devDependencies": {
37-
"chai": "3.5.0",
38-
"mocha": "2.5.3"
39-
}
2+
"name": "coderoad-cli",
3+
"version": "0.6.0",
4+
"description": "Command line interface for CodeRoad. Build project files.",
5+
"keywords": [
6+
"coderoad"
7+
],
8+
"license": "ISC",
9+
"author": "Shawn McKay <shawn.j.mckay@gmail.com>",
10+
"files": [
11+
"setup",
12+
"lib",
13+
"package.json",
14+
"*.md"
15+
],
16+
"main": "lib/index.js",
17+
"bin": {
18+
"coderoad": "lib/cli.js"
19+
},
20+
"directories": {
21+
"test": "test"
22+
},
23+
"scripts": {
24+
"test": "echo \"Error: no test specified\" && exit 1"
25+
},
26+
"dependencies": {
27+
"atom-plugin-command-line": "1.0.2",
28+
"chalk": "1.1.3",
29+
"commander": "2.9.0",
30+
"lodash.kebabcase": "4.0.1",
31+
"node-file-exists": "1.1.0",
32+
"prompt": "1.0.0",
33+
"sort-package-json": "^1.4.0",
34+
"validate-npm-package-name": "2.2.2"
35+
},
36+
"devDependencies": {
37+
"chai": "3.5.0",
38+
"mocha": "2.5.3"
39+
},
40+
"preferGlobal": true
4041
}

0 commit comments

Comments
 (0)