-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 738 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 738 Bytes
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
{
"name": "callgrind-reader",
"version": "1.0.1",
"description": "This package provides utility functions for reading and parsing a callgrind type file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"docs": "typedoc --out docs",
"start": "npm run build && node ./dist/index.js",
"clean": "rm -r ./dist/",
"test": "npm run build && jest",
"release": "npm run build && npm run docs && npm publish --access public"
},
"author": "Subhrajyoty Roy",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.4",
"typescript": "^5.0.4"
}
}