-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 835 Bytes
/
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
{
"name": "blu-api",
"version": "2.0.2",
"description": "An API for the BLU apps.",
"main": "./dist/index.js",
"scripts": {
"build": "babel ./src/client --out-dir dist --ignore 'test.js'",
"lint": "eslint ./src/client",
"start": "babel-node ./src/client/test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/katima-g33k/blu-api"
},
"author": "Jessy Lachapelle",
"license": "MIT",
"bugs": {
"url": "https://github.com/katima-g33k/blu-api/issues"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-plugin-import": "^2.7.0"
},
"dependencies": {
"request": "^2.83.0"
}
}