-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.43 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.43 KB
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
{
"name": "weather",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"bin": {
"weather": "dist/bin/weather.js"
},
"engines": {
"node": ">=8"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DK-2013/workshop-testing-cli.git"
},
"author": "Dmitry Kizilov",
"license": "ISC",
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/hexlet-boilerplates/nodejs-package#readme",
"dependencies": {
"axios": "^0.19.0",
"commander": "^3.0.1",
"gulp": "^4.0.2",
"source-map-support": "^0.5.13"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.0.0",
"debug": "^4.1.1",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^4.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.16.0",
"eslint-plugin-lodash-fp": "^2.2.0-a1",
"flow-bin": "^0.106.3",
"flow-typed": "^2.6.1",
"gulp-babel": "^8.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0"
}
}