-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.63 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
{
"name": "@dasch-swiss/dsp-js",
"version": "10.2.2",
"description": "JavaScript library that handles API requests to Knora",
"main": "index.js",
"files": [
"src/**/*.d.ts",
"src/**/*.js.map",
"src/**/*.js",
"index.d.ts",
"index.js.map",
"index.js",
"test/**/*.d.ts",
"test/**/*.js.map",
"test/**/*.js",
"test/**/*.json"
],
"scripts": {
"integrate-admin-test-data": "node scripts/integrate-files-admin.js",
"integrate-system-test-data": "node scripts/integrate-files-system.js",
"integrate-v2-test-data": "node scripts/integrate-files-v2.js",
"expand-jsonld-test-data": "node scripts/expand-jsonld-test-data-files.js",
"test": "karma start karma.conf.js",
"build": "rm -rf build/* && tsc && mkdir -p build/ && cp CHANGELOG.md build/ && cp LICENSE build/ && cp README.md build/ && cp package.json build/",
"yalc-publish": "npm run build && yalc publish build/",
"yalc-publish-and-update": "npm run build && yalc publish build/ --push",
"npm-pack": "npm run test && npm run build && npm pack build/ && mkdir -p dist/ && cp *.tgz dist/ && rm *.tgz",
"prepare-dev-publication": "node scripts/prepare-dev-publication.js",
"build-docs": "typedoc --options typedoc.json src",
"typedoc-config": "node scripts/typedoc-config.js",
"peer-deps": "npm i [email protected] --no-save",
"build-local": "npm i && npm run peer-deps && npm run prepare-dev-publication && npm run yalc-publish"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:dasch-swiss/knora-api-js-lib.git"
},
"keywords": [
"typescript",
"javascript",
"knora",
"api",
"converter"
],
"author": "Data & Service Center for the Humanities DaSCH, University of Basel",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/dasch-swiss/knora-api-js-lib/issues"
},
"homepage": "https://github.com/dasch-swiss/knora-api-js-lib#readme",
"devDependencies": {
"@types/jasmine": "^3.8.0",
"@types/jasmine-ajax": "^3.3.3",
"@types/node": "^12.20.43",
"jasmine": "^3.99.0",
"jasmine-ajax": "^4.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.0.1",
"karma-jasmine-ajax": "^0.1.13",
"karma-mocha-reporter": "^2.2.5",
"karma-typescript": "^5.5.3",
"phantomjs-prebuilt": "^2.1.16",
"tslint": "^6.1.0",
"typedoc": "^0.23.15",
"typescript": "4.8.3",
"rxjs": "^6.6.7"
},
"dependencies": {
"@babel/helper-compilation-targets": "^7.16.7",
"@types/jsonld": "^1.5.6",
"json2typescript": "1.4.1",
"jsonld": "^8.1.0"
},
"peerDependencies": {
"rxjs": "6.x"
}
}