-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.73 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "nacre",
"version": "0.4.1",
"description": "Intuitive Shell",
"engines": {
"node": ">=18"
},
"main": "built/index.js",
"license": "MIT",
"author": {
"name": "Arnaud Debec",
"email": "debec.arnaud@gmail.com"
},
"scripts": {
"build": "tsc",
"lint": "eslint src",
"test:unit": "mocha --require ts-node/register --recursive --extension=ts test/unit",
"test:integration": "mocha --require ts-node/register --recursive --extension=ts --timeout=20000 test/integration",
"test:system": "nacre ./test/system/fixtures/main.js"
},
"bin": {
"nacre": "./bin/index.js"
},
"files": [
"built",
"src",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/Nacre-sh/nacre.git"
},
"bugs": {
"url": "https://github.com/Nacre-sh/nacre/issues"
},
"homepage": "https://nacre.sh",
"keywords": [
"intuitive",
"object",
"shell",
"repl",
"console",
"terminal",
"cli",
"tty",
"cli",
"command-line"
],
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"chai": "^4.3.6",
"eslint": "^8.12.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^9.2.1",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"acorn": "^7.2.0",
"acorn-loose": "^7.0.0",
"acorn-walk": "^8.2.0",
"chalk": "^4.0.0",
"emphasize": "^4.2.0",
"minimist": "^1.2.5",
"rc": "~1.2.7",
"resolve": "~1.7.1"
},
"optionalDependencies": {
"userid": "^1.2.5"
}
}