-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.13 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
{
"name": "network-exporters",
"version": "1.1.0",
"description": "Utility for exporting a network",
"main": "src/FileExportManager.js",
"scripts": {
"lint": "eslint src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codaco/network-exporters.git"
},
"author": "Complex Data Collective",
"bugs": {
"url": "https://github.com/codaco/network-exporters/issues"
},
"homepage": "https://github.com/codaco/network-exporters#readme",
"devDependencies": {
"@babel/core": "7.11.1",
"@babel/eslint-parser": "~7.13.10",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-json-strings": "7.7.4",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-syntax-import-meta": "7.7.4",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "7.10.4",
"@babel/preset-react": "7.10.1",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"electron": "^9.4.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "^7.20.6",
"jest": "^26.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"regenerator-runtime": "^0.13.5"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](www|docs|node_modules|scripts|test)[/\\\\]"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"/node_modules/(?!codaco/ui).+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!@codaco/ui).+\\.js$"
]
},
"dependencies": {
"@babel/runtime": "^7.8.3",
"@xmldom/xmldom": "^0.8.10",
"archiver": "^4.0.1",
"async": "^3.2.6",
"eventemitter3": "^4.0.4",
"jssha": "^3.1.0",
"jszip": "^3.7.1",
"lodash": "^4.17.21",
"sanitize-filename": "^1.6.3",
"uuid": "^3.4.0"
}
}