This repository has been archived by the owner on Mar 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.67 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": "ir-spectrum",
"version": "0.2.0",
"description": "",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "rollup -c && cheminfo build --root IRSpectrum --no-uglify",
"build-doc": "cheminfo doc",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "rollup -c",
"test": "run-s test-only eslint",
"test-travis": "eslint src && jest --coverage && codecov",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/ir-spectrum.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/ir-spectrum/issues"
},
"homepage": "https://github.com/cheminfo/ir-spectrum#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/types": "^7.5.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"codecov": "^3.6.1",
"eslint": "^5.16.0",
"eslint-config-cheminfo": "^1.20.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.1",
"jest": "^24.9.0",
"jest-matcher-deep-close-to": "^1.3.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.19.4"
},
"dependencies": {
"hash-it": "^4.0.4",
"jcampconverter": "^3.0.4",
"ml-array-max": "^1.1.2",
"ml-array-min": "^1.1.2",
"ml-array-utils": "^0.4.0",
"ml-array-xy-equally-spaced": "^0.2.9",
"ml-array-xy-filter-x": "0.0.5",
"ml-array-xy-sort-x": "^0.2.5",
"ml-gsd": "^2.0.6",
"ml-pca": "^2.1.0",
"ml-stat": "^1.3.3",
"object-hash": "^1.3.1",
"xy-parser": "^2.2.2"
}
}