-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "odeum-connect",
"version": "0.1.10",
"description": "ODEUM Connect is a module that connects ODEUM CodeJS with ODEUM API",
"main": "lib/index.js",
"author": "Christian Broberg",
"license": "AGPL-3.0",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rm -rf lib",
"dist": "yarn run clean && yarn run build"
},
"dependencies": {
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-react-remove-prop-types": "^0.4.10",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.11.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.5.1"
},
"babel": {
"presets": [
"babel-preset-es2015",
"babel-preset-react",
"babel-preset-stage-2"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/odeum/odeum-connect.git"
},
"bugs": {
"url": "https://github.com/odeum/odeum-connect/issues"
},
"homepage": "https://github.com/odeum/odeum-connect#readme"
}