-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 1.26 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
{
"name": "fornac",
"version": "1.2.0",
"description": "An RNA secondary structure display component",
"license": "Apache-2.0",
"author": "Peter Kerpedjiev <[email protected]>",
"contributors": [
"Stefan Hammer <[email protected]>",
"Ronny Lorenz <[email protected]>"
],
"main": "dist/fornac.js",
"repository": {
"type": "git",
"url": "https://github.com/ViennaRNA/fornac"
},
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"watch": "webpack --config webpack.config.js --mode development --watch",
"build": "webpack --config webpack.config.js --mode production",
"dev": "webpack-dev-server --mode development",
"lint": "eslint src/**/*.js test/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-loader": "^8.0.6",
"buffer": "^6.0.3",
"css-loader": "^6.7.1",
"eslint": "^8.11.0",
"extract-css-chunks-webpack-plugin": "^4.6.0",
"file-loader": "^6.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-stream": "^7.0.0"
},
"dependencies": {
"d3": "~3.5.13",
"slugid": "^3.0.0"
}
}