-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.62 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
64
65
{
"name": "cl-diff-tool",
"version": "0.1.8",
"description": "command line diff tool",
"main": "dist/index.js",
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"scripts": {
"babel-node": "babel-node",
"start": "babel-node -- src/bin/gendiff",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"lint": "eslint src/ __tests__/",
"lint-fix": "eslint --fix src/ __tests__/",
"lint-staged": "lint-staged",
"release": "standard-version",
"prepublish": "npm run build",
"test": "jest"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rabinzon/project-lvl2-s129.git"
},
"keywords": [
"js",
"node",
"nodejs",
"hexlet",
"cl",
"difftool"
],
"author": "Ildar Gilfanov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Rabinzon/project-lvl1-s129/issues"
},
"homepage": "https://github.com/Rabinzon/project-lvl1-s129#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.7.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"lint-staged": "^4.2.3",
"pre-commit": "^1.2.2",
"standard-version": "^4.2.0"
},
"precommit.silent": true,
"pre-commit": "lint-staged",
"dependencies": {
"commander": "^2.11.0",
"ini": "^1.3.4",
"js-yaml": "^3.10.0",
"lodash": "^4.17.4"
}
}