-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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
{
"name": "conf-handler",
"version": "2.2.5",
"description": "Utility for finding differences in configuration files",
"main": "src/index.js",
"keywords": [
"utility",
"handler",
"find",
"differences",
"configuration",
"config",
"files"
],
"files": [
"dist",
"LICENSE"
],
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"scripts": {
"build": "NODE_ENV=production npx gulp build",
"prepublishOnly": "npm run build",
"watch": "npx gulp watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/corsicanec82/project-lvl2-s475.git"
},
"author": "Stanislav Dzisiak",
"license": "MIT",
"bugs": {
"url": "https://github.com/corsicanec82/project-lvl2-s475/issues"
},
"homepage": "https://github.com/corsicanec82/project-lvl2-s475#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"del": "^4.1.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-uglify": "^3.0.2",
"jest": "^24.8.0",
"jest-cli": "^24.8.0"
},
"dependencies": {
"commander": "^2.20.0",
"ini": "^1.3.5",
"js-yaml": "^3.13.1",
"lodash": "^4.17.13"
}
}