-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.1 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.1 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
{
"name": "itertest",
"version": "1.0.0",
"main": "dist/cli.js",
"description": "cli tool to quickly build html charts using Plotly.js from json files",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/OkayestDev/itertest.git"
},
"bin": {
"itertest": "dist/cli.js"
},
"scripts": {
"publish:latest": "npm run build && npm publish",
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "node --inspect=9229 ./node_modules/jest/bin/jest.js --runInBand --detectOpenHandles"
},
"keywords": [
"ab",
"a/b",
"testing",
"iterative"
],
"author": "Kyle Richardson",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.5.4",
"eslint": "^9.12.0",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"commander": "^14.0.2"
}
}