-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.9 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.9 KB
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
{
"name": "@entryscape/entrystore-js",
"type": "module",
"version": "4.16.2",
"main": "dist/entrystore.node.cjs",
"browser": "dist/entrystore.js",
"module": "src/index.js",
"description": "A JavaScript library that simplifies the communication with the EntryStore REST API",
"licenses": [
{
"type": "LGPL-3.0-only",
"url": "https://www.gnu.org/licenses/lgpl-3.0.en.html"
}
],
"author": {
"name": "Matthias Palmér",
"email": "matthias@metasolutions.se",
"url": "https://entryscape.com/"
},
"contributors": [
{
"name": "Valentino Hudhra",
"email": "valentino@metasolutions.se",
"url": "http://valentinohudhra.com/"
}
],
"files": [
"dist",
"src"
],
"repository": "https://bitbucket.org/metasolutions/entrystore.js.git",
"homepage": "https://entrystore.org/javascript/",
"exports": {
".": {
"module": "./src/index.js",
"require": "./dist/entrystore.node.cjs",
"browser": "./dist/entrystore.js",
"default": "./src/index.js"
}
},
"dependencies": {
"@entryscape/rdfjson": "2.7.4",
"@xmldom/xmldom": "^0.8.11",
"blueimp-md5": "^2.19.0",
"core-js": "^3.48.0",
"moment": "^2.30.1",
"regenerator-runtime": "^0.13.11",
"superagent": "^10.3.0",
"superagent-jsonp": "^0.2.1"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.29.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/register": "^7.28.6",
"@entryscape/linting-config": "bitbucket:metasolutions/linting-config#main",
"babel-loader": "^9.2.1",
"docdash": "^2.0.2",
"eslint": "^8.57.1",
"jest": "^27.5.1",
"jsdoc": "^4.0.5",
"madge": "^4.0.2",
"mocha": "^10.8.2",
"prettier": "^3.8.1",
"webpack": "^5.105.4",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.3",
"webpack-merge": "^5.10.0"
},
"scripts": {
"build:node": "webpack --mode production --config webpack.node.cjs",
"build:browser": "webpack --mode production --config webpack.browser.cjs",
"build": "webpack --mode production --config webpack.config.cjs",
"build:dev": "webpack --mode development",
"eslint": "eslint -c .eslintrc.cjs 'src/**/*.js'",
"jsdoc": "jsdoc src -r -c jsdocConf.json",
"entrystore:tests": "docker run --platform linux/amd64 --rm -v ./tests/entrystore.properties:/srv/entrystore/entrystore.properties:ro -p 8080:8080 metasolutions/entrystore:latest /srv/entrystore/bin/entrystore --config file:///srv/entrystore/entrystore.properties --port 8080 --log-level debug",
"tests": "NODE_OPTIONS='--experimental-vm-modules' jest",
"entrystore:examples": "docker run --platform linux/amd64 --rm -v ./tests/entrystore.properties:/srv/entrystore/entrystore.properties:ro -p 8081:8080 metasolutions/entrystore:latest /srv/entrystore/bin/entrystore --config file:///srv/entrystore/entrystore.properties --port 8080 --log-level debug",
"examples": "docker run --platform linux/amd64 -t -i --rm --add-host=host.docker.internal:host-gateway -v ./examples/apache.conf:/etc/apache2/sites-available/000-default.conf:ro -v ./examples/:/srv/examples/:ro -v ./dist/:/srv/dist/ -p 8080:80 metasolutions/apache2"
},
"jest": {
"verbose": true,
"collectCoverage": false,
"testTimeout": 75000,
"moduleNameMapper": {
"^@entryscape/rdfjson": "<rootDir>/node_modules/@entryscape/rdfjson/src/main.js"
},
"collectCoverageFrom": [
"src/*.js"
],
"coverageDirectory": "tests/coverage"
},
"prettier": "@entryscape/linting-config/prettier",
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c"
}