forked from cytomine/Cytomine-js-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.86 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
{
"name": "cytomine-client",
"version": "0.0.0",
"description": "Client to communicate with Cytomine API in javascript. For more information about Cytomine, go to http://www.cytomine.org.",
"browser": "dist/cytomine-client.min.js",
"unpkg": "dist/cytomine-client.min.js",
"repository": {
"type": "git",
"url": "https://github.com/cytomine/Cytomine-js-client.git"
},
"scripts": {
"dev": "webpack-cli --mode=development --watch --info-verbosity verbose",
"build": "webpack-cli --mode=production",
"test": "./node_modules/karma/bin/karma start",
"prepack": "npm run build",
"prepare": "npm run build"
},
"files": [
"dist",
"src"
],
"main": "./src/index.js",
"author": "Burtin Elodie <[email protected]>",
"contributors": [
"Hoyoux Renaud <[email protected]>",
"Rubens Ulysse <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.21.1",
"core-js": "^3.22.5",
"detect-browser": "^4.4.0",
"regenerator-runtime": "^0.13.9"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chai-as-promised": "^5.3.0",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"karma": "^6.0.0",
"karma-chai": "^0.1.0",
"karma-chai-as-promised": "0.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"mocha": "^6.1.4",
"randomstring": "^1.1.5",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.0"
}
}