-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "edf-header-visualization",
"version": "2.1.0",
"description": "Interactively visualize the structure of the static and dynamic header of an EDF file",
"author": "maxbeier",
"license": "GPL-3.0",
"repository": "edfplus/edf-header-visualization",
"keywords": [
"edf",
"european data format",
"biosignals"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"engines": {
"node": ">=8",
"npm": ">=5"
},
"eslintConfig": {
"extends": "react-app"
},
"babel": {
"presets": [
"react-app"
]
},
"scripts": {
"build": "NODE_ENV=production rollup -c",
"start": "NODE_ENV=development rollup -c -w",
"prepare": "npm run build",
"predeploy": "cd example && npm install && npm run build",
"deploy": "gh-pages -d example/build"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "16.8.0-alpha.1",
"react-dom": "16.8.0-alpha.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@svgr/rollup": "^4.1.0",
"babel-eslint": "9.0.0",
"babel-preset-react-app": "^7.0.0",
"cross-env": "^5.1.4",
"eslint": "5.6.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-react": "^7.10.0",
"gh-pages": "^2.0.1",
"react": "16.8.0-alpha.1",
"react-dom": "16.8.0-alpha.1",
"react-scripts": "^2.1.3",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.1",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-postcss": "^1.6.3",
"rollup-plugin-url": "^2.1.0"
},
"files": [
"dist"
]
}