-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.73 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
{
"name": "sage-client",
"version": "2.1.1",
"description": "Javascript client for SaGe interfaces",
"main": "dist/lib.js",
"types": "dist/lib.d.ts",
"bin": {
"sage-client": "bin/sage-client.js"
},
"scripts": {
"pretest": "tsc",
"test": "mocha tests/**/*-test.js",
"build": "webpack",
"lint": "tslint -c ./tslint.json --fix src/*.ts src/**/*.ts",
"build-ts": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sage-org/sage-client.git"
},
"keywords": [
"sage",
"SPARQL query",
"SPARQL query engine"
],
"author": "Thomas Minier <[email protected]> (https://callidon.github.io/)",
"contributors": [
"Corentin Marionneau <[email protected]> (https://github.com/Slaanaroth)",
"Merlin Barzilai (https://github.com/Rintarou)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sage-org/sage-client/issues"
},
"homepage": "https://github.com/sage-org/sage-client#readme",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"commander": "^2.20.0",
"lodash": "^4.17.15",
"request": "^2.88.0",
"sparql-engine": "^0.5.9",
"sparqljs": "^2.0.3"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.14",
"@types/request": "^2.48.3",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"standard": {
"env": [
"node",
"mocha",
"chai"
]
}
}