-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 830 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 830 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
26
27
28
29
30
31
32
33
{
"name": "heap-ts",
"version": "1.0.1",
"description": "Heap data structure implemented in TypeScript",
"main": "out/index.js",
"types": "out/index.d.ts",
"repository": "https://github.com/RPallas92/heap-ts.git",
"author": "Ricardo Pallas",
"license": "MIT",
"files": [
"lib/**/*"
],
"scripts": {
"compile": "tsc",
"prettier": "prettier --write .",
"test": "jest",
"prepare": "yarn compile",
"prepublishOnly": "yarn test && yarn prettier",
"preversion": "yarn prettier",
"version": "yarn prettier && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"jest": "^25.4.0",
"prettier": "2.0.5",
"test": "jest",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/jest": "^25.2.1"
}
}