forked from borisdiakur/n_
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.44 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
{
"name": "n_",
"version": "1.4.4",
"description": "lodash REPL",
"main": "./lib/n_",
"bin": {
"n_": "./bin/n_",
"n_3": "./bin/n_3"
},
"scripts": {
"postinstall": "npm pack lodash@^3 ; targz extract lodash-3.*.tgz extraneous/lodash3",
"test": "npm run postinstall ; mocha test && npm run jshint",
"mocha": "mocha --reporter min test",
"jshint": "jshint .",
"istanbul": "rm -rf coverage && istanbul cover ./node_modules/mocha/bin/_mocha --report html && open coverage/lib/n_.js.html",
"coveralls": "rm -rf coverage && istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": "borisdiakur/n_",
"keywords": "_, cli, console, lodash, underscore, repl, shell, terminal",
"author": "Boris Diakur <contact@borisdiakur.com> (https://github.com/borisdiakur)",
"contributors": [
"Boris Diakur <contact@borisdiakur.com> (https://github.com/borisdiakur)",
"John-David Dalton <john.david.dalton@gmail.com> (http://allyoucanleet.com/)"
],
"license": "MIT",
"dependencies": {
"lodash": "^4.0.0",
"os-homedir": "^1.0.1",
"repl.history": "^0.1.3",
"tar.gz": "^1.0.5"
},
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.4.2",
"jshint": "^2.7.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "0.0.2"
},
"engines": {
"node": ">=0.8.0"
}
}