-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 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
{
"name": "mass-database-manager",
"version": "0.0.11",
"private": true,
"description": "Molecular formula database manager",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepublishOnly": "rollup -c",
"build": "cheminfo build --no-source-map",
"test": "run-s testonly eslint",
"testonly": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheminfo-js/mass-database-manager.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/cheminfo-js/mass-database-manager/issues"
},
"homepage": "https://github.com/cheminfo-js/mass-database-manager#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"cheminfo-tools": "^1.20.3",
"eslint": "^4.19.0",
"eslint-config-cheminfo": "^1.17.2",
"eslint-plugin-jest": "^21.22.0",
"jest": "^22.4.2",
"npm-run-all": "^4.1.2",
"rollup": "^0.52.3"
},
"dependencies": {
"emdb": "^0.6.3",
"eslint-plugin-import": "^2.14.0"
}
}