-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.58 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
{
"name": "openchemlib-extended",
"version": "6.0.0",
"description": "Openchemlib extended",
"keywords": [
"openchemlib",
"ocl"
],
"files": [
"lib",
"minimal.js",
"core.js",
"full.js"
],
"author": "Michaël Zasso",
"repository": "cheminfo-js/openchemlib-extended",
"bugs": {
"url": "https://github.com/cheminfo-js/openchemlib-extended/issues"
},
"homepage": "https://github.com/cheminfo-js/openchemlib-extended",
"license": "BSD-3-Clause",
"main": "./core.js",
"directories": {
"lib": "src"
},
"jest": {
"roots": [
"<rootDir>/src"
]
},
"scripts": {
"test": "npm run testonly && npm run eslint",
"testonly": "jest",
"build": "npm run build-clean && npm run compile && npm run build-dist",
"build-clean": "rimraf ./lib/",
"build-dist": "cheminfo build -u",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"compile": "babel src --out-dir lib --quiet --ignore __tests__",
"prepublish": "npm run compile"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"cheminfo-tools": "^1.23.3",
"eslint": "^6.8.0",
"eslint-config-cheminfo": "^2.0.4",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.0"
},
"dependencies": {
"ml-floyd-warshall": "^1.0.0",
"ml-matrix": "^6.4.1",
"openchemlib": "^7.2.3",
"papaparse": "^5.3.0",
"rxn-parser": "0.1.0",
"sdf-parser": "^4.0.1"
}
}