-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1003 Bytes
/
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
{
"name": "sol_log_bench",
"version": "1.0.0",
"description": "Parse solana logs to create compute unit benchmarks",
"main": "lib/index.js",
"scripts": {
"compile": "rimraf lib && tsc",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "npx eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test": "mocha",
"predeploy": "npm i && npm run lint && npm run test && npm build",
"package": "npm run lint && npm run build && npm publish --access public"
},
"author": "schwarzbi3r <[email protected]>",
"license": "MIT",
"dependencies": {
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"chai": "^4.3.6",
"eslint": "^8.1.0",
"mocha": "^9.2.1",
"rimraf": "^3.0.2",
"ts-mocha": "^9.0.2",
"ts-node": "^10.7.0",
"typedoc": "^0.22.13",
"typescript": "^4.6.2"
}
}