-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.29 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
{
"name": "@rmlio/matey",
"version": "1.2.0",
"scripts": {
"prepare-dist": "rm -rf dist; mkdir dist",
"build:dev": "npm run prepare-dist; browserify lib/index.js --standalone Matey -t urify/transform -t brfs -t browserify-css > dist/matey.min.js",
"build:browser": "npm run prepare-dist; browserify lib/index.js --standalone Matey -t urify/transform -t brfs -t browserify-css --minify=true | terser > dist/matey.min.js",
"build:example_with_bundler": "browserify examples/with_bundler/init.js -t urify/transform -t brfs -t browserify-css --minify=true | terser > examples/with_bundler/bundle.js",
"test": "jest --silent --verbose",
"watch:dev": "nodemon -w ./editor -x \"npm run build:dev\""
},
"repository": {
"type": "git",
"url": "https://github.com/RMLio/matey"
},
"keywords": [
"RML",
"YAML",
"Parser"
],
"author": "Ben De Meester",
"contributors": [
"René Van Der Schueren",
"Pieter Heyvaert (https://pieterheyvaert.com)",
"Dylan Van Assche",
"Gerald Haesendonck"
],
"license": "MIT",
"dependencies": {
"@graphy/content.ttl.read": "latest",
"@graphy/content.ttl.write": "latest",
"@graphy/memory.dataset.fast": "latest",
"@rmlio/yarrrml-parser": "^1.7.2",
"beaver-logger": "^4.0.28",
"body-parser": "^1.19.0",
"bootstrap": "^4.6.1",
"brace": "^0.11.1",
"brfs": "^2.0.2",
"core-js": "^3.16.0",
"express": "^4.17.1",
"extend": "^3.0.2",
"handlebars": "^4.7.7",
"jquery": "^3.6.0",
"n3": "^1.11.1",
"popper.js": "^1.16.1",
"prefix-ns": "^0.1.2",
"q": "^1.5.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@testing-library/jest-dom": "6.5.0",
"browser-sync": "^2.27.5",
"browserify": "^17.0.0",
"browserify-css": "^0.15.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom-worker-fix": "^0.1.8",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.12",
"terser": "^5.7.1",
"urify": "^2.1.1",
"xhr-mock": "latest"
},
"main": "lib/index.js",
"description": "Web-based editor for YARRRML rules.",
"jest": {
"moduleNameMapper": {
"\\.css": "<rootDir>/test/styleMock.js"
},
"setupFilesAfterEnv": [
"<rootDir>/test/setUpTests.js"
],
"testEnvironment": "jsdom",
"testTimeout": 5000
}
}