-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 992 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
34
35
{
"name": "structp",
"version": "1.0.4",
"description": "A simple library of data structures with interesting features.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --passWithNoTests",
"start:dev": "tslint --project . && nodemon",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node ./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samirsilwal/structures.git"
},
"keywords": [],
"author": "Samir Silwal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/samirsilwal/structures/issues"
},
"homepage": "https://github.com/samirsilwal/structures#readme",
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"jest": "^29.7.0",
"nodemon": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typescript": "^3.9.5"
}
}