-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 2.96 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
107
108
109
110
111
112
{
"name": "@zazuko/query-rdf-data-cube",
"version": "0.7.1",
"description": "Query (or introspect) [RDF Data Cubes](https://www.w3.org/TR/vocab-data-cube/) with a JavaScript API, without writing SPARQL.",
"scripts": {
"build": "rimraf dist; rollup -c",
"build:watch": "rollup -cw",
"test": "jest",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"docs:compile": "rimraf docs && npm run typedoc -- ./src && touch ./docs/.nojekyll",
"docs:publish": "gh-pages -t -d docs",
"typedoc": "typedoc",
"lint": "tslint --project tsconfig.json",
"prepare": "npm run build",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepublishOnly": "npm run docs:compile && npm run docs:publish"
},
"types": "dist/node/index.d.ts",
"main": "dist/node/index.js",
"module": "dist/es/index.js",
"files": [
"dist"
],
"keywords": [
"rdf",
"datacube",
"data cube",
"query builder",
"sparql",
"sparql query"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zazuko/query-rdf-data-cube.git"
},
"author": "Victor Felder <[email protected]> (https://draft.li)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zazuko/query-rdf-data-cube/issues"
},
"homepage": "https://github.com/zazuko/query-rdf-data-cube#readme",
"dependencies": {
"@rdfjs/data-model": "^1.1.2",
"@rdfjs/namespace": "^1.1.0",
"@types/clone": "^0.1.30",
"@types/jest": "^24.0.25",
"@types/node-fetch": "^2.5.4",
"@types/rdfjs__namespace": "^1.1.1",
"clone": "^2.1.2",
"node-fetch": "^2.6.0",
"node-slugify": "0.0.3",
"sparqljs": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"conventional-changelog-cli": "^2.0.31",
"coveralls": "^3.0.9",
"fetch-vcr": "~3.0.1",
"gh-pages": "^2.2.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"rollup": "^1.29.0",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-typescript2": "^0.25.3",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.1",
"tslint": "^5.20.1",
"typedoc": "^0.16.2",
"typedoc-clarity-theme": "^1.1.0",
"typescript": "^3.7.4"
},
"jest": {
"automock": false,
"moduleNameMapper": {
"hack-node-fetch": "node-fetch",
"node-fetch": "fetch-vcr"
},
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/utils/"
],
"collectCoverage": true,
"roots": [
"<rootDir>"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"globals": {
"ts-jest": {
"diagnostics": {
"warnOnly": true
}
}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}