-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "gendiff-project",
"version": "0.0.21",
"description": "Gendiff project",
"main": "dist/index.js",
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"files": [
"dist"
],
"scripts": {
"babel-node": "babel-node",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"eslint": "eslint",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goncharov-roman/project-lvl2-s309.git"
},
"author": "Goncharov Roman",
"license": "ISC",
"bugs": {
"url": "https://github.com/goncharov-roman/project-lvl2-s309/issues"
},
"homepage": "https://github.com/goncharov-roman/project-lvl2-s309#readme",
"dependencies": {
"commander": "^2.17.0",
"ini": "^1.3.5",
"js-yaml": "^3.12.0",
"lodash": "^4.17.10"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jest": "^21.18.0",
"jest": "^23.4.2",
"jest-cli": "^23.4.2"
},
"jest": {
"testEnvironment": "node"
}
}