-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "vsm-dictionary-uniprot",
"version": "1.0.16",
"description": "Implementation of a VSM-dictionary that interfaces with the UniProt REST API",
"main": "src/DictionaryUniProt.js",
"scripts": {
"lint": "eslint src test",
"test": "nyc --reporter=lcov mocha \"src/**/*.test.js\" --check-leaks",
"coverage": "codecov",
"build": "webpack --config webpack.config.js"
},
"keywords": [
"VSM",
"dictionary",
"ontology",
"identifier",
"term",
"uniprot",
"interface"
],
"repository": {
"type": "git",
"url": "git+https://github.com/UniBioDicts/vsm-dictionary-uniprot"
},
"author": "John Zobolas",
"license": "AGPL-3.0",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"clean-webpack-plugin": "^1.0.1",
"codecov": "^3.8.1",
"copy-webpack-plugin": "^5.1.2",
"eslint": "^5.13.0",
"html-webpack-plugin": "^3.2.0",
"js-yaml": "^3.14.0",
"lodash": "^4.17.20",
"mocha": "^7.2.0",
"nock": "^9.6.1",
"nyc": "^15.1.0",
"terser-webpack-plugin": "^2.3.8",
"text-transform-loader": "^2.0.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"vsm-dictionary": "^2.6.6",
"xmlhttprequest": "^1.8.0"
}
}