-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 995 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 995 Bytes
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
{
"name": "scripts",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"reuses": "yarn babel-node indicators/run.js reusability",
"test": "yarn test:unit && yarn test:lint",
"test:unit": "jest",
"test:lint": "eslint . --quiet"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"axios": "^0.18.0",
"date-fns": "^1.30.1",
"dotenv": "^7.0.0",
"json2csv": "^4.3.5",
"lodash": "^4.17.21",
"ora": "^3.2.0",
"promise.waterfall": "^3.2.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.4",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"flow-bin": "^0.94.0",
"jest": "^24.5.0",
"prettier": "^1.16.4"
}
}