-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "tiny-molecule",
"version": "0.2.0",
"description": "A small, developer-friendly 3D molecule viewer for the modern web",
"main": "dist/bundle.js",
"scripts": {
"test": "mocha",
"example": "webpack-dev-server --config webpack.example.config.js",
"build": "webpack -p",
"build-example": "webpack --config webpack.example.config.js",
"lint": "eslint src/ example/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justinmc/tiny-molecule.git"
},
"keywords": [
"molecule",
"3d",
"visualizer",
"viewer",
"pdb"
],
"author": "Justin McCandless",
"license": "MIT",
"bugs": {
"url": "https://github.com/justinmc/tiny-molecule/issues"
},
"homepage": "https://github.com/justinmc/tiny-molecule#readme",
"dependencies": {
"parse-mmcif": "^0.0.1",
"parse-pdb": "0.0.1",
"three": "^0.88.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.35",
"@babel/preset-env": "^7.0.0-beta.35",
"babel-loader": "^8.0.0-beta.0",
"eslint": "^4.13.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"exports-loader": "^0.6.4",
"html-webpack-plugin": "^2.30.1",
"imports-loader": "^0.7.1",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.9.7"
}
}