forked from exacs/liqen-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.4 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": "liqen",
"version": "0.5.0",
"description": "JS Client for Liqen Core API",
"main": "dist/liqen-api-client.js",
"module": "lib/index.js",
"files": [
"lib",
"dist",
"src"
],
"scripts": {
"test": "eslint src",
"prepublish": "npm run build",
"prepare": "npm run build",
"build": "npm run build:lib && npm run build:dist",
"build:lib": "babel --presets env src -d lib",
"build:dist": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CommonActionForum/liqen-client-js.git"
},
"keywords": [
"api",
"client",
"liqen"
],
"contributors": [
"Carlos Saito <[email protected]> (http://saito.style)",
"Cristian Hernandez <[email protected]> (http://crishernandez.co)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CommonActionForum/liqen-client-js/issues"
},
"homepage": "https://github.com/CommonActionForum/liqen-client-js#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.4.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"webpack": "^2.4.1"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1"
}
}