UNPKG

2.09 kBJSONView Raw
1{
2 "name": "shx",
3 "version": "0.2.0",
4 "description": "Portable Shell Commands for Node",
5 "bin": {
6 "shx": "lib/cli.js"
7 },
8 "files": [
9 "lib"
10 ],
11 "scripts": {
12 "prebuild": "rimraf lib",
13 "build": "babel src -d lib",
14 "build:watch": "npm run build -- -w",
15 "dev": "concurrently -rk 'npm run build:watch' 'npm run lint:watch'",
16 "lint": "eslint .",
17 "lint:fix": "npm run lint --silent -- --fix",
18 "lint:watch": "watch 'npm run lint --silent' src test",
19 "prepublish": "npm run build",
20 "posttest": "npm run lint --silent",
21 "release:major": "shelljs-release major",
22 "release:minor": "shelljs-release minor",
23 "release:patch": "shelljs-release patch",
24 "changelog": "shelljs-changelog",
25 "codecov": "codecov",
26 "test": "nyc --reporter=text --reporter=lcov mocha",
27 "test:watch": "concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'"
28 },
29 "repository": {
30 "type": "git",
31 "url": "git+https://github.com/shelljs/shx.git"
32 },
33 "keywords": [
34 "shelljs",
35 "shell",
36 "unix",
37 "bash",
38 "sh",
39 "exec",
40 "cli",
41 "zsh"
42 ],
43 "contributors": [
44 "Ari Porad <ari@ariporad.com> (http://ariporad.com/)",
45 "Levi Thomason <me@levithomason.com> (https://github.com/levithomason)",
46 "Nate Fischer <ntfschr@gmail.com>"
47 ],
48 "license": "MIT",
49 "bugs": {
50 "url": "https://github.com/shelljs/shx/issues"
51 },
52 "homepage": "https://github.com/shelljs/shx#readme",
53 "devDependencies": {
54 "babel-cli": "^6.6.5",
55 "babel-preset-es2015": "^6.6.0",
56 "babel-register": "^6.7.2",
57 "codecov": "^1.0.1",
58 "concurrently": "^2.1.0",
59 "eslint": "^2.10.1",
60 "eslint-config-airbnb-base": "^3.0.1",
61 "eslint-plugin-import": "^1.8.0",
62 "mocha": "^2.4.5",
63 "nyc": "^6.4.0",
64 "rimraf": "^2.5.2",
65 "shelljs-changelog": "^0.2.0",
66 "shelljs-plugin-open": "^0.1.1",
67 "shelljs-release": "^0.2.0",
68 "should": "^11.1.1",
69 "watch": "^0.18.0"
70 },
71 "dependencies": {
72 "es6-object-assign": "^1.0.3",
73 "minimist": "^1.2.0",
74 "shelljs": "^0.7.3"
75 }
76}