This repository was archived by the owner on Jul 3, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "mcul",
"version": "0.1.0-alpha3",
"description": "A molecular generation engine",
"main": "dist/mcul.node.js",
"repository": "https://github.com/teamtofu/mcul",
"homepage": "https://github.com/teamtofu/mcul",
"author": "Russell Steadman",
"bugs": {
"url": "https://github.com/teamtofu/mcul/issues",
"email": "steadman.21@osu.edu"
},
"keywords": [
"mcul",
"molecule",
"atom",
"chemistry",
"chemical",
"chemical engineering",
"science",
"research",
"education",
"science communication"
],
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.5",
"eslint": "^6.8.0",
"fs-extra": "^8.1.0",
"glob-all": "^3.1.0",
"handlebars": "^4.7.3",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build": "node config/docsBuild.js && webpack --config config/webpack.config.js && webpack --config config/webpack.config.node.js",
"test": "webpack --config config/webpack.config.node.js && jest --verbose",
"test-update": "webpack --config config/webpack.config.node.js && jest --updateSnapshot",
"lint": "eslint src"
},
"jest": {
"clearMocks": true,
"coverageDirectory": "coverage",
"testEnvironment": "node"
},
"runkitExampleFilename": "docs/examples/runkit.js"
}