-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.49 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": "chemcalc-extended",
"version": "2.4.0",
"description": "chemcalc-extended project - extends chemcalc with new methods",
"keywords": [
"chemcalc-extended",
"mass similarity",
"mass spectrometry",
"chemcalc",
"molecular formula",
"monoisotopic mass",
"eutrophication potential"
],
"author": "Luc Patiny",
"repository": "cheminfo-js/chemcalc-extended",
"bugs": {
"url": "https://github.com/cheminfo-js/chemcalc-extended/issues"
},
"homepage": "https://github.com/cheminfo-js/chemcalc-extended",
"license": "MIT",
"main": "./src/index.js",
"directories": {
"lib": "src",
"test": "test"
},
"scripts": {
"test": "mocha --require should --reporter mocha-better-spec-reporter --recursive",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- --require should --reporter dot --recursive",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --require should --reporter dot --recursive",
"build": "cheminfo build --no-uglify"
},
"devDependencies": {
"cheminfo-tools": "^1.22.5",
"istanbul": "^0.4.5",
"mocha": "^6.0.2",
"mocha-better-spec-reporter": "^3.1.0",
"should": "^13.2.3"
},
"dependencies": {
"chemcalc": "^3.4.1",
"ml-stat": "^1.0.1",
"papaparse": "^4.6.3",
"peaks-similarity": "^2.3.1",
"peptide": "^1.8.0",
"regexp-enumerator": "^1.0.0",
"superagent": "^4.1.0",
"superagent-promise": "^1.1.0",
"web-worker-manager": "^0.2.0"
}
}