forked from shelljs/shelljs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (62 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (62 loc) · 1.57 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
58
59
60
61
62
{
"name": "shelljs",
"version": "1.0.0-000dev",
"description": "Portable Unix shell commands for Node.js",
"keywords": [
"shelljs",
"bash",
"unix",
"shell",
"makefile",
"make",
"jake",
"synchronous"
],
"contributors": [
"Ari Porad <ari@ariporad.com> (http://ariporad.com/)",
"Nate Fischer <ntfschr@gmail.com> (https://github.com/nfischer)"
],
"repository": {
"type": "git",
"url": "git://github.com/shelljs/shelljs.git"
},
"license": "BSD-3-Clause",
"homepage": "http://github.com/shelljs/shelljs",
"main": "./shell.js",
"scripts": {
"prebuild": "rimraf lib",
"build": "babel src -d lib",
"build:watch": "npm run build -- -w",
"dev": "concurrently -rk 'npm run build:watch' 'npm run lint:watch'",
"lint": "eslint .",
"lint:fix": "npm run lint --silent -- --fix",
"lint:watch": "watch 'npm run lint --silent' src test",
"prepublish": "npm run build",
"posttest": "npm run lint --silent",
"test": "nyc --reporter=text --reporter=lcov mocha",
"test:watch": "concurrently -rk 'npm run test --silent -- -w' 'npm run lint:watch'",
"changelog": "bash scripts/changelog.sh"
},
"bin": {
"shjs": "./bin/shjs"
},
"dependencies": {
"glob": "^7.0.0",
"interpret": "^1.0.0",
"rechoir": "^0.6.2"
},
"devDependencies": {
"coffee-script": "^1.10.0",
"jshint": "~2.1.11"
},
"optionalDependencies": {},
"engines": {
"node": ">=0.11.0",
"iojs": "*"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}