-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "@overturebio-stack/lectern-client",
"version": "1.5.0",
"files": [
"lib/**/*"
],
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"description": "js client for the overture lectern",
"scripts": {
"test": "npm run tslint && npm run compile && mocha --exit --timeout 5000 -r ts-node/register test/**.spec.ts",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"prebuild": "rimraf lib && rimraf docs",
"build": "npm run prebuild && npm run test && typedoc --out docs --target es6 --theme minimal --mode file src",
"build-notest": "npm run prebuild && npm run tslint && npm run compile && typedoc --out docs --target es6 --theme minimal --mode file src",
"deploy-docs": "ts-node tools/gh-pages-publish",
"compile": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/overture-stack/js-lectern-client.git"
},
"publishConfig": {
"access": "public"
},
"license": "AGPL-3.0",
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/deep-freeze": "^0.1.2",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.2",
"@types/node": "^12.0.10",
"@types/node-fetch": "^2.5.10",
"chai": "^4.3.4",
"husky": "^6.0.0",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
},
"dependencies": {
"cd": "^0.3.3",
"deep-freeze": "^0.0.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"node-worker-threads-pool": "^1.4.3",
"promise-tools": "^2.1.0",
"ts-node": "^9.1.1",
"winston": "^3.3.3"
},
"prettier": {
"printWidth": 100,
"trailingComma": "all",
"singleQuote": true
},
"author": "bashar allabadi <[email protected]>"
}