-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "nodejs-clis",
"version": "1.1.0",
"description": "A collection of CLI utilities",
"scripts": {
"test": "mocha --compilers js:babel-register test/spec",
"dev": "run-p watch:test watch:lint",
"lint": "eslint ./",
"watch:test": "nodemon --exec \"npm test || true\"",
"watch:lint": "nodemon --exec \"npm run lint || true\""
},
"repository": {
"type": "git",
"url": "git://github.com/CrabDude/nodejs-clis.git"
},
"author": "Adam Crabtree",
"license": "MIT",
"bugs": {
"url": "https://github.com/CrabDude/nodejs-clis/issues"
},
"homepage": "https://github.com/CrabDude/nodejs-clis#readme",
"dependencies": {
"babel-cli": "^6.16.0",
"babel-preset-nodev6": "^1.0.0",
"babel-register": "^6.14.0",
"nodemon": "^1.10.2",
"npm-run-all": "^3.1.0",
"songbird": "^1.0.4",
"trycatch": "^1.5.21",
"yargs": "^6.2.0"
},
"devDependencies": {
"rimraf": "^2.5.4",
"babel-eslint": "^7.0.0",
"chai": "^3.5.0",
"eslint": "^3.7.0",
"eslint-config-noderiety": "^1.1.1",
"mocha": "^3.0.2"
},
"bin": {
"cli-echo": "./echo.js",
"cli-cat": "./cat.js",
"cli-ls": "./ls.js",
"cli-rm": "./rm.js",
"cli-touch": "./touch.js",
"cli-mkdir": "./mkdir.js",
"cli-grep": "./grep.js",
"cli-ln": "./ln.js"
}
}