-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "rinore",
"version": "2.1.0",
"description": "Rich Node.js REPL",
"type": "module",
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/croquiscom/rinore.git"
},
"keywords": [
"repl"
],
"author": "Sangmin Yoon <[email protected]>",
"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 8000 --exit ./test/*.ts",
"test": "npm run test:type && npm run lint && npm run test:unit --",
"test:cov": "c8 npm run test",
"prepare": "husky"
},
"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": {
"@croquiscom/eslint-config": "^3.0.0",
"@types/bluebird": "^3.5.42",
"@types/chai": "^5.0.0",
"@types/diff": "^5.2.3",
"@types/lodash": "^4.17.12",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.0",
"@types/yargs": "^17.0.33",
"c8": "^10.1.2",
"chai": "^5.1.2",
"coffeescript": "^2.7.0",
"coveralls": "^3.1.1",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"post-merge-install": "^0.4.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"c8": {
"extension": [
".ts"
],
"reporter": [
"lcov"
]
},
"lint-staged": {
"*.{js,ts}": "eslint",
"**/*": "prettier --write --ignore-unknown"
}
}