forked from GeolearnAI/js-bdms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "@ist-supsi/bmsjs",
"version": "1.0.13",
"description": "A ReactJS module exposing WEB-BDMS Server REST API.",
"main": "build/index.js",
"scripts": {
"build": "babel lib -d build",
"build:watch": "babel lib -w -d build",
"lint": "eslint lib/**; exit 0",
"lint:watch": "esw -w lib/**",
"prepublish": "npm run build"
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "https://github.com/geoadmin/js-bdms.git"
},
"author": "SUPSI <[email protected]> (https://github.com/ist-supsi)",
"contributors": [
"Milan P. Antonovic <[email protected]> (https://github.com/mantonovic)"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/geoadmin/js-bdms/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.0.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.10.0",
"eslint-watch": "^3.1.5"
},
"peerDependencies": {
"axios": "^0.19.0",
"prop-types": "^15.6.2",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
},
"dependencies": {
"axios": "^0.19.0"
}
}