-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.87 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
{
"name": "@snlab/florence",
"version": "0.4.0",
"svelte": "src/index.js",
"main": "src/index.js",
"module": "dist/index.mjs",
"repository": "https://gitlab.com/spatialnetworkslab/florence.git",
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c test/sandbox/rollup.config.js -w",
"autobuild:test": "rollup -c test/integration/testing-app/rollup.config.js -w",
"build:ci": "rollup -c test/integration/testing-app/rollup.config.js",
"dev": "run-p start:dev autobuild",
"dev:test": "run-p start:test autobuild:test",
"dev:ci": "run-s build:ci start:ci",
"start:ci": "sirv test/integration/testing-app/public -s --port 3009",
"start:dev": "sirv test/sandbox/public --dev -s",
"start:test": "sirv test/integration/testing-app/public --dev -s --port 3009",
"cy:run": "cypress run --headless --browser chrome --reporter junit --reporter-options 'mochaFile=junit-integration-[hash].xml,toConsole=true'",
"cy:run:nojunit": "cypress run --headless --browser chrome",
"cy:open": "cypress open",
"test:integration": "run-p --race dev:test cy:run:nojunit",
"test:integration:ci": "run-p --race dev:ci cy:run",
"test": "jest",
"test:unit": "jest",
"test:unit:ci": "jest --ci --coverage --reporters=default --reporters=jest-junit",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@snlab/florence-datacontainer": "^0.2.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/svelte": "^3.0.3",
"babel-jest": "^27.4.2",
"canvas": "^2.8.0",
"cypress": "^9.1.1",
"cypress-plugin-snapshots": "^1.4.4",
"d3-array": "^3.1.1",
"d3-dsv": "^3.0.1",
"d3-fetch": "^3.0.1",
"d3-format": "^2.0.0",
"d3-interpolate": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.0.0",
"eslint": "^8.4.1",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-svelte3": "^3.0.0",
"jest": "^27.4.3",
"jest-junit": "^13.0.0",
"lodash": "^4.17.20",
"npm-run-all": "^4.1.5",
"rollup": "^2.60.2",
"rollup-plugin-css-only": "^3.0.0",
"rollup-plugin-dsv": "^1.2.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.2",
"serialize-javascript": "^6.0.0",
"sirv-cli": "^1.0.10",
"svelte": "^3.31.0",
"svelte-jester": "^2.1.5",
"svelte-routing": "^1.4.2"
},
"dependencies": {
"@snlab/rendervous": "^0.3.4"
}
}