-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.36 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
{
"name": "mzml",
"version": "0.2.1",
"description": "Read and explore mzML v1.1 files",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublish": "rollup -c",
"test": "npm run testonly && npm run eslint",
"test-travis": "eslint src && jest --coverage && codecov",
"testonly": "jest",
"build": "rollup -c && cheminfo build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo-js/mzML.git"
},
"keywords": [],
"author": "Miguel Asencio",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo-js/mzML/issues"
},
"homepage": "https://github.com/cheminfo-js/mzML#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"cheminfo-tools": "^1.23.3",
"codecov": "^3.6.1",
"eslint": "^6.6.0",
"eslint-config-cheminfo": "^2.0.3",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-no-only-tests": "^2.3.1",
"eslint-plugin-prettier": "^3.1.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"rollup": "^1.26.0"
},
"dependencies": {
"base64-arraybuffer": "^0.2.0",
"pako": "^1.0.10",
"sax": "^1.2.4"
}
}