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
|
{
"name": "izuku",
"version": "1.0.0",
"description": "In-Console Tabular Data Representation and Manipulation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\", \"resolveJsonModule\": true }' mocha -r ts-node/register 'tests/**/*.ts'",
"start:dev": "nodemon",
"build": "rm -rf dist && rimraf ./build && tsc",
"lint": "eslint . --ext .ts",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"test-single": "func() { env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\", \"resolveJsonModule\": true }' mocha -r ts-node/register \"$1\"; }; func",
"docs:dev": "mkdocs serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luciferreeves/izuku.js.git"
},
"keywords": [
"izuku"
],
"author": "Kumar Priyansh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/luciferreeves/izuku.js/issues"
},
"homepage": "https://github.com/luciferreeves/izuku.js#readme",
"devDependencies": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"chai": "^4.3.4",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"mocha": "^9.1.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm run lint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"buffer": "^6.0.3",
"simple-wcswidth": "^1.0.1"
}
}
|