-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.31 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
{
"name": "gendiff-zipofar",
"version": "0.1.4",
"description": "File diff generator",
"main": "index.js",
"files": [
"dist"
],
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "make test && make lint && make build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zipofar/project-lvl2-s439.git"
},
"keywords": [
"diff",
"project",
"hexlet"
],
"author": "Zipofar",
"license": "ISC",
"bugs": {
"url": "https://github.com/zipofar/project-lvl2-s439/issues"
},
"homepage": "https://github.com/zipofar/project-lvl2-s439#readme",
"dependencies": {
"commander": "^2.19.0",
"ini": "^1.3.5",
"js-yaml": "^3.12.2",
"lodash": "^4.17.11"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"eslint": "^5.15.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"jest": "^24.1.0",
"jest-cli": "^24.1.0"
}
}