forked from cheminfo/mztab-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "mztab-converter",
"version": "0.0.0",
"description": "Convewrt mztab data",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "rollup -c",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-only && npm run eslint && npm run prettier",
"test-only": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/mztab-converter.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/mztab-converter/issues"
},
"homepage": "https://github.com/cheminfo/mztab-converter#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@types/jest": "^27.4.1",
"eslint": "^8.14.0",
"eslint-config-cheminfo": "^7.3.0",
"jest": "^28.0.2",
"prettier": "^2.6.2",
"rollup": "^2.70.2"
},
"dependencies": {
"ensure-string": "^1.2.0"
}
}