-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 2.72 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
{
"private": true,
"workspaces": [
"packages/*"
],
"name": "@treecg/event-stream-client",
"version": "0.0.6",
"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": "NODE_OPTIONS=--experimental-vm-modules npx 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": "nodemon -e ts --ignore '*.d.ts' --exec npm run build",
"publish": "npm run build && lerna publish",
"publish-bare": "lerna exec -- npm publish --silent",
"doc": "typedoc --name Comunica --disableOutputCheck --external-modulemap '.*packages/([^/]+)/.*' --mode modules --out documentation",
"postinstall": "npm run build && lerna run build:engine",
"version": "manual-git-changelog onversion",
"build": "npm run build:ts && npm run build:components",
"build:ts": "tsc",
"build:components": "componentsjs-generator packages/*",
"build-watch:ts": "tsc --watch",
"build-watch:components": "nodemon -e d.ts --exec npm run build:components",
"test": "NODE_OPTIONS=--experimental-vm-modules npx 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"
},
"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": {
"componentsjs-generator": "^3.1.0",
"lerna": "^6.5.1",
"typescript": "^5.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"jest-rdf": "^1.8.0",
"manual-git-changelog": "^1.0.1",
"source-map-loader": "^4.0.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.2",
"webpack": "^5.76.2",
"webpack-cli": "^5.0.1"
}
}