-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
106 lines (106 loc) · 3.25 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@terminusdb/terminusdb-client",
"version": "10.0.33",
"description": "TerminusDB client library",
"main": "index.js",
"types": "./dist/typescript/index.d.ts",
"files": [
"*.md",
"lib",
"dist"
],
"directories": {
"lib": "lib",
"test": "test",
"dist": "dist"
},
"publishConfig": {
"access": "public"
},
"author": "[email protected]",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.7.2",
"follow-redirects": "^1.14.8",
"form-data": "^4.0.0",
"jest": "^29.1.2",
"node-forge": "^1.0.0",
"pako": "^2.0.4",
"pathval": "^1.1.1",
"ts-node": "^10.9.1",
"underscore": "^1.13.2"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/register": "^7.13.8",
"@types/jest": "^29.1.2",
"babel-loader": "^8.0.6",
"chai": "^4.3.4",
"concurrently": "^7.4.0",
"eol": "^0.9.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "3.1.3",
"html-webpack-plugin": "^5.3.1",
"husky": "^7.0.4",
"jsdoc-to-markdown": "^7.1.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^1.19.1",
"sinon": "^12.0.1",
"ts-jest": "^29.0.3",
"typescript": "^4.6.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^4.6.0"
},
"scripts": {
"mkdocs:multi": "node ./docs/createDocs.js",
"mkdocs:src": "docco lib/*.js -l plain -x md -o docs/api",
"mkdocs:api": "jsdoc2md --configure docs/doc_config.json --partial docs/partial/scope.hbs docs/partial/member-index.hbs docs/partial/header.hbs --helper docs/helper/format.js --files lib/woql.js lib/woqlClient.js lib/typedef.js > docs/api/api.js.md",
"mkdocs": "cp README.md docs/ && npm run mkdocs:multi",
"test:integration": "jest",
"test": "npm run cover",
"test:only": "mocha --require @babel/register --require @babel/preset-env --recursive ",
"test:watch": "mocha --watch --require @babel/register --require @babel/preset-env --recursive",
"test:examples": "node examples/",
"cover": "nyc --check-coverage --lines 30 npm run test:only ",
"lint:check": "eslint .",
"lint": "eslint --fix .",
"build": "webpack --mode production && tsc",
"coveralls-after": "nyc --reporter=lcov mocha --require @babel/register --require @babel/preset-env",
"npm:publish": "npm publish --access public",
"test-single": "mocha $1",
"woql-test": "mocha test/woqlTripleBuilder.spec.js test/woql.spec.js test/woqlTripleBuilder01.spec.js test/woqlExtra.spec.js",
"git-tag": "git tag $npm_package_version",
"prepare": "husky install",
"generate-types": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terminusdb/terminusdb-client-js.git"
},
"keywords": [
"Terminus",
"WOQL",
"Driver",
"Database",
"DB"
],
"bugs": {
"url": "https://github.com/terminusdb/terminusdb-client/issues"
},
"homepage": "https://github.com/terminusdb/terminusdb-client#readme",
"browser": {
"http": false,
"https": false,
"net": false,
"path": false,
"stream": false,
"tls": false,
"fs": false
}
}