-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
82 lines (82 loc) · 2.34 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
82
{
"name": "molecule-3d-for-react",
"version": "0.4.5",
"description": "3D molecule visualization with React and 3Dmol.js",
"engines": {
"node": "6.9.1"
},
"main": "dist/bundle.js",
"files": [
"dist/"
],
"keywords": [
"molecule",
"react",
"chemical",
"visualization",
"3d"
],
"dependencies": {
"3dmol": "^1.0.10",
"babel-polyfill": "^6.13.0",
"immutable": "^3.8.1",
"jquery": "^3.1.0",
"keymirror": "^0.1.1",
"react": "^15.3.2",
"react-dom": "^15.3.2"
},
"devDependencies": {
"babel-core": "^6.7.7",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2016": "^6.16.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.17.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.2",
"inline-environment-variables-webpack-plugin": "^1.1.0",
"karma": "^0.13.22",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"nightwatch": "^0.9.8",
"node-sass": "^3.6.0",
"phantomjs": "^2.1.7",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^15.3.2",
"sass-loader": "^3.2.0",
"selenium-download": "^2.0.10",
"sinon": "^2.0.0-pre.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2",
"enzyme": "^2.7.1",
"json-loader": "^0.5.4"
},
"scripts": {
"test": "karma start --single-run",
"tdd": "karma start",
"build": "webpack -p --config webpack.config.js",
"watch": "webpack -p --config webpack.config.js --watch",
"example": "NODE_ENV=DEVELOPMENT webpack-dev-server --content-base example/ --config example/webpack.config.js --progress --colors",
"e2e": "./node_modules/nightwatch/bin/nightwatch",
"setup-selenium": "node scripts/download_selenium.js",
"prepublish": "npm run build"
},
"author": "Autodesk Bio/Nano",
"license": "Apache 2.0",
"repository": {
"type": "git",
"url": "https://github.com/Autodesk/molecule-3d-for-react.git"
}
}