This repository has been archived by the owner on Mar 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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": "apio-consumer",
"version": "0.0.1",
"description": "Apio Consumer for JS is part of the Apio project, which aims to promote the creation of APIs designed to evolve over time. The Apio Consumer is a client-side library to facilitate the creation of consumers of any hypermedia API.",
"main": "dist/node.js",
"browser": "dist/browser.js",
"jsnext:main": "src/index.js",
"module": "src/index.js",
"scripts": {
"build": "webpack",
"checkFormat": "npm run prettier -- --list-different",
"lint": "eslint src/**/*.js",
"format": "npm run prettier -- --write",
"prettier": "prettier-eslint 'src/**/*.js'",
"test": "jest",
"test:watch": "jest --watch"
},
"author": {
"name": "Victor Galán Grande",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/liferay-mobile/apio-consumer-js"
},
"license": "SEE LICENSE IN LICENSE.md",
"keywords": [
"hypermedia",
"consumer",
"REST"
],
"dependencies": {
"babel": "^6.23.0",
"babel-loader": "^7.1.4",
"cross-fetch": "^2.2.1",
"form-data": "^2.3.2",
"loader": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"eslint": "^4.19.1",
"eslint-config-liferay": "^2.0.18",
"jest": "^23.1.0",
"prettier": "1.13.4",
"prettier-eslint-cli": "^4.7.1",
"webpack": "^4.12.2",
"webpack-cli": "^3.0.8"
}
}