-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.99 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
{
"name": "@nevermined-io/cli",
"version": "2.2.2",
"main": "index.js",
"repository": "[email protected]:nevermined-io/cli.git",
"author": "Nevermined",
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"prebuild": "rm -rf ./dist && mkdir ./dist && cp -r ./resources ./dist/resources",
"lint": "eslint ./",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --parser typescript --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx}'",
"clean": "rm -rf ./dist/ ./doc/ ./.nyc_output",
"build:watch": "npm build --watch",
"dev": "ts-node src/index.ts",
"start": "node dist/src/index.js",
"generate-doc": "ts-node src/generateDoc.ts",
"test": "jest --coverage --rootDir test -w 1",
"test:integration": "jest --coverage --rootDir test/integration -w 1",
"test:external": "jest --coverage --rootDir test/external -w 1",
"test:watch": "jest --watch --rootDir test"
},
"bin": {
"ncli": "./dist/src/index.js"
},
"dependencies": {
"@nevermined-io/sdk": "3.0.33",
"log4js": "^6.9.1",
"chalk": "^4.1.2",
"cross-fetch": "~3.1.5",
"dotenv": "^16.0.1",
"eta": "1.12.3",
"ethers": "^6.11.1",
"ipfs-http-client-lite": "^0.3.0",
"tar": "^6.1.11",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node-fetch": "^2.5.7",
"@types/tar": "^6.1.1",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.57.0",
"eslint-config-alloy": "^4.3.0",
"eslint-config-nevermined": "^0.2.0",
"eslint-config-next": "^14.1.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.5.0",
"jose": "^4.13.0",
"node-fetch": "^2.6.1",
"prettier": "^2.8.8",
"prettier-package-json": "^2.8.0",
"rollup": "^2.58.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.8.1",
"typescript": "^5.4.3"
}
}