-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.94 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
{
"name": "ocean-cli",
"version": "2.0.0",
"description": "CLI tool to interact with the oceanprotocol's JavaScript library to privately & securely publish, consume and run compute on data.",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run build:tsc",
"build:tsc": "tsc --sourceMap",
"clean": "rm -rf ./dist/ ./doc/ ./.nyc_output",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --parser typescript --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx}'",
"cli": "TS_NODE_PROJECT='./tsconfig.json' ./node_modules/ts-node/dist/bin.js src/index.ts",
"test:system": "npm run mocha 'test/**/*.test.ts'",
"test": "npm run lint && npm run test:system",
"mocha": "TS_NODE_PROJECT='./test/tsconfig.json' mocha --config=test/.mocharc.json --node-env=test --exit"
},
"author": "Ocean Protocol <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/oceanprotocol/ocean.js-cli/issues"
},
"homepage": "https://github.com/oceanprotocol/ocean.js-cli#readme",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"chai": "^4.3.7",
"crypto": "^1.0.1",
"eslint": "^8.44.0",
"eslint-config-oceanprotocol": "^2.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"globals": "^15.3.0",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"typescript": "^5.0.4",
"typescript-eslint": "^7.12.0"
},
"dependencies": {
"@oceanprotocol/contracts": "^2.0.4",
"@oceanprotocol/lib": "^3.4.1",
"cross-fetch": "^3.1.5",
"crypto-js": "^4.1.1",
"decimal.js": "^10.4.1",
"enquirer": "^2.4.1",
"ethers": "^5.7.2",
"figlet": "^1.7.0",
"ts-node": "^10.9.1"
}
}