-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 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
{
"name": "hexlet-project-2",
"version": "0.4.0",
"description": "difference evaluator",
"main": "index.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"babel-node": "babel-node",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"prepublishOnly": "npm run build",
"eslint": "eslint"
},
"bin": {
"gendiff": "dist/bin/gendiff.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koshkarik/project-lvl2-s217.git"
},
"keywords": [
"difference"
],
"author": "Yarik",
"license": "ISC",
"bugs": {
"url": "https://github.com/koshkarik/project-lvl2-s217/issues"
},
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/koshkarik/project-lvl2-s217#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "*",
"babel-jest": "*",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.16.0",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"jest": "^22.1.4",
"jest-cli": "*"
},
"dependencies": {
"commander": "^2.13.0",
"eslint-plugin-jest": "^21.7.0",
"ini": "^1.3.5",
"js-yaml": "^3.10.0",
"lodash": "^4.17.4"
}
}