-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.3 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.3 KB
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
{
"name": "project-clear",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"bin": {
"index": "dist/bin/index.js"
},
"engines": {
"node": "8"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "NODE_ENV=production babel src --out-dir dist --source-maps inline",
"babel-node": "babel-node",
"prepublishOnly": "npm run build",
"eslint": "eslint",
"nodemon": "nodemon --exec babel-node src/bin/phonebook.js"
},
"devDependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-eslint": "*",
"babel-jest": "*",
"babel-preset-env": "*",
"babel-preset-stage-0": "*",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jest": "*",
"istanbul": "^0.4.5",
"jest": "^22.1.3",
"jest-cli": "*",
"nodemon": "^1.15.1"
},
"dependencies": {
"nock": "*",
"babel-polyfill": "*",
"axios": "^0.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GarrySh/project-clear.git"
},
"jest": {
"testEnvironment": "node"
},
"author": "Garry Sh",
"license": "ISC",
"bugs": {
"url": "https://github.com/GarrySh/project-clear/issues"
},
"homepage": "https://github.com/GarrySh/project-clear#readme"
}