forked from TREEcg/event-stream-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.58 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
{
"private": true,
"workspaces": [
"packages/*"
],
"name": "@brechtvdv/event-stream-client",
"version": "0.0.5",
"description": "Syncs an entire TREE collection, but only emits the objects, does not store them. ",
"scripts": {
"test-changed": "lerna run test --since HEAD",
"lint-changed": "lerna run lint --since HEAD",
"build-changed": "lerna run build --since HEAD",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test-ci": "jest --ci --maxWorkers=4 --coverage",
"coveralls-ci": "cat ./coverage/lcov.info | coveralls",
"lint": "tslint packages/*/lib/**/*.ts packages/*/test/**/*.ts --exclude '**/*.d.ts'",
"clean": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"build-watch": "tsc --watch",
"publish": "yarn run build && lerna publish",
"publish-bare": "lerna exec -- npm publish --silent",
"doc": "typedoc --name Comunica --disableOutputCheck --external-modulemap '.*packages/([^/]+)/.*' --mode modules --out documentation",
"postinstall": "yarn run build && lerna run prepare",
"version": "manual-git-changelog onversion",
"build": "node \"./node_modules/typescript/bin/tsc\" --build --force tsconfig.json",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/test/.*|(\\\\.|/)(test|spec))-test.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"setupFilesAfterEnv": [ "./setup-jest.js" ],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/mocks/",
"index.js"
],
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/TREEcg/event-stream-client.git"
},
"keywords": [
"event",
"stream",
"TREE",
"hypermedia",
"Web",
"API"
],
"author": "Brecht Van de Vyvere",
"license": "MIT",
"bugs": {
"url": "https://github.com/TREEcg/event-stream-client/issues"
},
"homepage": "https://github.com/TREEcg/event-stream-client#readme",
"dependencies": {
"awesome-typescript-loader": "^5.2.1",
"lerna": "^3.4.0",
"source-map-loader": "^2.0.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^24.0.0",
"@types/rdf-js": "*",
"jest": "^26.6.3",
"jest-rdf": "^1.6.0",
"ts-jest": "^26.5.2",
"manual-git-changelog": "^1.0.1",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
}
}