forked from InsidersByte/zoopla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.86 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
66
67
68
69
{
"name": "zoopla",
"version": "0.1.0",
"description": "Zoopla API",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && babel src --out-dir dist --ignore *.test.js",
"lint": "eslint --ignore-path .gitignore .",
"test": "npm run lint && jest --coverage",
"format": "prettier --print-width 160 --trailing-comma es5 --single-quote --write './*.js' './!(dist|flow-typed|node_modules|coverage)/**/*.js'",
"prepublish": "npm test && npm run build",
"precommit": "lint-staged",
"np": "np"
},
"lint-staged": {
"*.js": [
"prettier --print-width 160 --trailing-comma es5 --single-quote --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://insidersbyte@github.com/InsidersByte/zoopla.git"
},
"keywords": [
"zoopla"
],
"author": "Jonathon Kelly <jonathon@insidersbyte.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/InsidersByte/zoopla/issues"
},
"homepage": "https://github.com/InsidersByte/zoopla#readme",
"dependencies": {
"superagent": "^3.5.2"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.1",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-1": "6.24.1",
"codeclimate-test-reporter": "0.4.1",
"coveralls": "2.13.1",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.1.3",
"eslint-config-prettier": "2.1.0",
"eslint-plugin-import": "2.2.0",
"husky": "0.13.3",
"jest-cli": "20.0.1",
"lint-staged": "3.4.1",
"np": "2.14.1",
"prettier": "1.3.1",
"rimraf": "2.6.1"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](dist|docs|node_modules|scripts)[/\\\\]"
]
}
}