-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.3 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
{
"name": "iofod-cli",
"version": "1.3.4",
"main": "./bin/index.js",
"module": "./bin/index.js",
"types": "./bin/index.d.ts",
"bin": {
"iofod": "./bin/index.js"
},
"repository": "https://github.com/iofod/IFstruct-parser.git",
"dependencies": {
"chalk": "^4.1.1",
"css": "^3.0.0",
"download": "^8.0.0",
"fs-extra": "^10.0.0",
"get-port": "^5.1.1",
"inquirer": "^8.1.1",
"mri": "^1.1.6",
"rfc6902": "^4.0.1",
"universal-diff": "^2.0.2",
"ws": "^8.3.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.0.5",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.5.4"
},
"scripts": {
"cli:install": "npm install -g&&npm link",
"mac:install": "sudo npm install -g",
"cli:uninstall": "npm uninstall -g",
"dev": "tsc --watch",
"build": "tsc",
"test": "jest --runInBand",
"lint:scripts": "eslint ./src/ --ext .ts",
"format:scripts": "prettier ./src/ --write",
"format": "npm run format:scripts"
}
}