-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.42 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.42 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
44
45
{
"name": "algorithms",
"version": "0.1.0",
"homepage": "https://github.com/JoeFerri/algorithms",
"bugs": "https://github.com/JoeFerri/algorithms/issues",
"description": "Studio algoritmi.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"config": {
"mocha_glob": "tests/**/*.test.ts"
},
"scripts": {
"prepublish": "npm run build",
"start": "npm-run-all -s clean build",
"clean": "del-cli dist",
"build": "tsc --noImplicitOverride",
"test": "cross-env-shell mocha --timeout 99000 -r ts-node/register ${npm_package_config_mocha_glob}",
"test-only": "cross-env-shell mocha --timeout 5000 -r ts-node/register tests/${npm_config_file}.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test"
},
"keywords": [
"algorithms"
],
"author": "Giuseppe Ferri <joeferri83prog@libero.it> (https://jfprogrammer.altervista.org/)",
"license": "LGPL-3.0-only",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git://github.com/JoeFerri/algorithms.git"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.4",
"chai": "^4.3.4",
"chalk": "^4.1.1",
"cross-env": "^7.0.3",
"del-cli": "^4.0.0",
"mocha": "^9.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}