-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "sdf-parser",
"version": "6.0.1",
"description": "SDF parser",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"sideEffects": false,
"scripts": {
"build": "cheminfo-build --entry src/index.js --root SDFParser",
"compile": "rollup -c",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "npm run compile",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-coverage && npm run eslint && npm run prettier",
"test-coverage": "vitest run --coverage",
"test-only": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/cheminfo/sdf-parser.git"
},
"keywords": [
"sdf",
"parser",
"molfile",
"v2000",
"v3000",
"mdl"
],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/sdf-parser/issues"
},
"homepage": "https://github.com/cheminfo/sdf-parser",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"@vitest/coverage-v8": "^2.1.4",
"babel-eslint": "^10.1.0",
"callback-stream": "^1.1.0",
"cheminfo-build": "^1.2.0",
"eslint": "^9.14.0",
"eslint-config-cheminfo": "^12.0.1",
"filelist-utils": "^1.11.2",
"openchemlib": "^8.16.0",
"prettier": "^3.3.3",
"vitest": "^2.1.4"
},
"dependencies": {
"dynamic-typing": "^1.0.1",
"ensure-string": "^1.2.0"
}
}