-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.26 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": "nmredata",
"version": "0.9.11",
"description": "NMReDATA parser",
"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/nmredata.git"
},
"keywords": [],
"author": "J. Alejandro Bolanos A. <[email protected]>; (https://github.com/jobo322)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/nmredata/issues"
},
"homepage": "https://github.com/cheminfo/nmredata#readme",
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"eslint": "^8.28.0",
"eslint-config-cheminfo": "^9.2.0",
"jest": "^29.7.0",
"nmredata-data-test": "^0.4.0",
"prettier": "^3.3.2",
"rollup": "^4.18.0"
},
"dependencies": {
"filelist-utils": "^1.11.0",
"jszip": "^3.10.1",
"openchemlib": "^8.14.0",
"openchemlib-utils": "^6.1.0"
}
}