-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "j-coupling-constant-predictor",
"version": "0.0.0",
"description": "Predictor for 1,2,3 and 4 J coupling constants",
"main": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo-js/j-coupling-constant-predictor.git"
},
"keywords": [],
"author": "andres castillo",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo-js/j-coupling-constant-predictor/issues"
},
"homepage": "https://github.com/cheminfo-js/j-coupling-constant-predictor#readme",
"jest": {
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"devDependencies": {
"eslint": "^6.4.0",
"eslint-config-cheminfo": "^2.0.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"nmr-predictor": "^1.2.0"
},
"dependencies": {
"ml-floyd-warshall": "^1.0.0",
"ml-matrix": "^6.4.0",
"ml-stat": "^1.3.3",
"openchemlib-extended": "^6.0.0"
}
}