-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.04 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.04 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
78
79
80
81
82
{
"name": "rinore",
"version": "2.4.0",
"description": "Rich Node.js REPL",
"type": "module",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/croquiscom/rinore.git"
},
"keywords": [
"repl"
],
"author": "Sangmin Yoon <simon.yoon@kakaostyle.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/croquiscom/rinore/issues"
},
"scripts": {
"prepublishOnly": "npm run lint && npm run build",
"build": "rimraf lib && tsc -p src/tsconfig.build.json",
"lint": "eslint .",
"test:type": "tsc --noEmit",
"test:unit": "RINORE_UNIT_TEST=true mocha -n import=tsx -t 20000 --exit ./test/*.ts",
"test": "npm run test:type && npm run lint && npm run test:unit --",
"test:cov": "c8 npm run test",
"prepare": "husky",
"changeset": "changeset",
"release": "npm run lint && npm run build && npm run changeset publish"
},
"bin": {
"rinore": "./bin/rinore",
"rinore-remote": "./bin/rinore-remote"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"bluebird": "^3.7.2",
"diff": "^7.0.0",
"lodash": "^4.17.21",
"node-watch": "^0.7.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.0",
"@croquiscom/eslint-config": "^3.2.0",
"@types/bluebird": "^3.5.42",
"@types/chai": "^5.2.1",
"@types/diff": "^7.0.2",
"@types/lodash": "^4.17.16",
"@types/mocha": "^10.0.10",
"@types/node": "^22.14.1",
"@types/yargs": "^17.0.33",
"c8": "^10.1.3",
"chai": "^5.2.0",
"coffeescript": "^2.7.0",
"eslint": "^9.24.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"mocha": "^11.1.0",
"post-merge-install": "^0.4.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"c8": {
"extension": [
".ts"
],
"reporter": [
"lcov"
]
},
"lint-staged": {
"*.{js,ts}": "eslint",
"*": "prettier --write --ignore-unknown"
}
}