-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.37 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "ondotori-proxy",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"build": "babel src -d dist/",
"start": "node index.js",
"test": "cross-env NODE_ENV=test IACLOUD_USER_ID=user1 IACLOUD_USER_PASS=userpass mocha"
},
"keywords": [],
"author": "tomoki1207",
"repository": {
"type": "git",
"url": "[email protected]:ia-cloud/handson-ondotori.git"
},
"files": [
"index.js",
"dist/",
"README.md"
],
"babel": {
"presets": [
"es2015"
],
"env": {
"test": {
"plugins": [
"espower"
]
}
}
},
"eslintConfig": {
"extends": "airbnb-base",
"plugins": [
"import"
],
"rules": {
"max-len": "off"
}
},
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"moment": "^2.18.1",
"request": "^2.81.0",
"uuid": "^3.0.1",
"xml2js-parser": "^1.1.1",
"twitter": "^1.7.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-espower": "^2.3.2",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"cross-env": "^5.0.1",
"eslint": "^4.0.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"mocha": "^3.4.2",
"nock": "^9.0.13",
"power-assert": "^1.4.4",
"rewire": "^2.5.2"
}
}