-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.85 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "ts-scikit",
"version": "0.1.2",
"description": "A scientific toolkit written in Typescript",
"author": "Chris Engelsma <chris.engelsma@gmail.com>",
"main": "index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/chrisengelsma/ts-scikit.git"
},
"bugs": {
"url": "https://github.com/chrisengelsma/ts-scikit/issues"
},
"contributors": [],
"keywords": [
"scientific-computing",
"science",
"image-processing"
],
"license": "Apache-2.0",
"scripts": {
"setup": "npm install",
"build": "tsc -p .",
"build:watch": "tsc -w -p .",
"lint": "tslint -p tsconfig.json",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"toc": "./node_modules/.bin/doctoc README.md --github --maxlevel 3",
"doc": "typedoc --out ./docs --mode file --excludePrivate --excludeProtected --tsconfig tsconfig.json ./src",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
"postdoc": "shx cp .nojekyll docs/.nojekyll",
"coverage": "nyc npm run test"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"doctoc": "^1.4.0",
"coveralls": "^3.1.0",
"mocha-lcov-reporter": "^1.3.0",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"nyc": "^15.1.0",
"shx": "^0.3.2",
"rimraf": "^3.0.2",
"ts-node": "^8.10.2",
"typedoc": "^0.17.7",
"npm-run-all": "^4.1.5",
"tslint": "^6.1.2",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=4.0.0"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"nyc": {
"extensions": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts",
"**/*.spec.ts",
"**/index.ts"
],
"reporter": [
"html",
"lcov",
"text"
],
"all": false
}
}