-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) 路 1.11 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) 路 1.11 KB
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
{
"name": "@akpoflash/algos",
"version": "1.0.0",
"description": "Implementation of some most common algorithms",
"main": "./build/index-cjs.js",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"sideEffects": false,
"files": [
"build"
],
"scripts": {
"build": "tsc && npm run rollup",
"rollup": "rollup --input ./build/index.js --file ./build/index-cjs.js --format cjs --plugin @rollup/plugin-node-resolve",
"clean": "rm -rf ./build",
"test": "jest --detectOpenHandles --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AkpoFlash/algos.git"
},
"keywords": [
"algorithms"
],
"author": "Kirill Anisimov",
"license": "MIT",
"bugs": {
"url": "https://github.com/AkpoFlash/algos/issues"
},
"homepage": "https://github.com/AkpoFlash/algos#readme",
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.4.0",
"jest": "^27.5.1",
"rollup": "^2.67.2",
"ts-jest": "^27.1.5",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}