-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.75 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.75 KB
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
64
65
66
67
68
69
70
{
"name": "data-extractor",
"version": "0.0.0",
"description": "Extract literature physical properties",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "rollup -c",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage --rootDir src",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo/data-extractor.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo/data-extractor/issues"
},
"homepage": "https://github.com/cheminfo/data-extractor#readme",
"jest": {
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@types/jest": "^26.0.19",
"eslint": "^7.16.0",
"eslint-config-cheminfo": "^5.2.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"esm": "^3.2.25",
"fs": "0.0.1-security",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rollup": "^2.35.1"
},
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"delay": "^4.4.0",
"jsdom": "^16.4.0",
"md5": "^2.3.0",
"mf-parser": "^1.1.6",
"node-fetch": "^2.6.1",
"openchemlib": "^7.2.3",
"path": "^0.12.7",
"recursive-readdir-sync": "^1.0.6",
"tsutils": "^3.20.0",
"typescript": "^4.1.3",
"url-toolkit": "^2.2.1",
"urlencode": "^1.1.0",
"xml-js": "^1.6.11"
}
}