-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.43 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
56
57
58
59
60
61
62
63
{
"type": "module",
"types": "./build/types/main.d.ts",
"module": "./build/main.js",
"name": "dsnode",
"version": "1.0.3",
"description": "",
"main": "./build/main.js",
"scripts": {
"watch": "tsc --watch",
"build": "tsc --build",
"format": "prettier --write \"src/**/*.ts\"",
"format:test": "prettier --check \"src/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm run format",
"test": "jest --coverage --config=./jest.config.js"
},
"exports": {
".": {
"import": "./build/main.js",
"types": "./build/types/main.d.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodesVault/DSNode.git"
},
"author": "CodesVault",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodesVault/DSNode/issues"
},
"homepage": "https://github.com/CodesVault/DSNode#readme",
"keywords": [
"datastructure",
"data",
"ds",
"dsnode",
"nodejs",
"node",
"data structure",
"library",
"stack",
"queue",
"linkedlist",
"blockchain",
"hashtable",
"typescript",
"javascript"
],
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.21",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.6.0",
"typescript": "^4.5.5"
}
}