-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.77 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
{
"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 --mode=development --watch --info-verbosity verbose",
"build": "webpack --mode=production",
"test": "./node_modules/karma/bin/karma start",
"prepack": "npm run build"
},
"files": [
"dist",
"src"
],
"author": "Burtin Elodie <elodie.burtin@cytomine.coop>",
"contributors": [
"Hoyoux Renaud <renaud.hoyoux@cytomine.coop>",
"Rubens Ulysse <urubens@uliege.be>"
],
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.21.1",
"detect-browser": "^4.4.0",
"idempotent-babel-polyfill": "^7.0.0"
},
"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"
}
}