-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 KB
/
package.json
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
{
"name": "n_",
"version": "4.0.0",
"description": "lodash REPL",
"main": "./lib/n_.js",
"bin": {
"n_": "./bin/n_"
},
"scripts": {
"start": "node bin/n_",
"lint": "eslint .",
"test:unit": "ava",
"test": "npm run lint && nyc npm run test:unit",
"open-coverage": "open coverage/lcov-report/n_.js.html",
"publish-coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf coverage .nyc_output tmp/histories--*"
},
"repository": "borisdiakur/n_",
"keywords": [
"_",
"cli",
"console",
"lodash",
"underscore",
"repl",
"shell",
"terminal"
],
"author": "Boris Diakur (https://borisdiakur.de)",
"contributors": [
"Boris Diakur <[email protected]> (https://github.com/borisdiakur)",
"John-David Dalton <[email protected]> (http://allyoucanleet.com/)"
],
"license": "MIT",
"dependencies": {
"chalk": "^5.2.0",
"lodash": "^4.17.21",
"repl-story": "^0.3.0",
"yargs": "^15.3.1"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"ava": "^5.2.0",
"coveralls": "^3.1.1",
"eslint": "^8.32.0",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"strip-ansi": "^6.0.0",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=18"
},
"ava": {
"files": [
"test/**/*"
]
}
}