-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 773 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 773 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
{
"name": "typescript-data-structures",
"version": "1.0.0",
"description": "TypeScript Data Structures",
"main": "src/index.ts",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digi0ps/typescript-data-structures.git"
},
"author": "digi0ps",
"license": "ISC",
"bugs": {
"url": "https://github.com/digi0ps/typescript-data-structures/issues"
},
"homepage": "https://github.com/digi0ps/typescript-data-structures#readme",
"devDependencies": {
"@types/jest": "^24.0.18",
"coveralls": "^3.0.6",
"jest": "^24.9.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
}
}