-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 1.64 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "lastcall-nightcrawler",
"version": "1.0.0-alpha6",
"main": "dist/index.js",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.1",
"chalk": "^2.3.0",
"debug": "^3.1.0",
"events-async": "^1.2.1",
"forever-agent": "^0.6.1",
"junit-report-builder": "^1.2.0",
"markdown-table": "^1.1.1",
"ora": "^2.0.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"yargs": "^12.0.1"
},
"bin": {
"nightcrawler": "bin/nightcrawler"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.2",
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.50.0",
"flow": "^0.2.3",
"flow-bin": "^0.76.0",
"jest": "^23.4.0",
"jest-junit": "^5.1.0",
"nock": "^9.1.6",
"prettier": "^1.10.2"
},
"scripts": {
"prettier": "prettier --single-quote --write '{src,test}/**/*.{js,jsx}' '*.js'",
"test": "jest",
"flow": "flow",
"build": "babel src/ --out-dir=dist"
},
"files": [
"dist/*",
"bin/*"
],
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "8"
}
}
],
"flow"
]
},
"eslintConfig": {
"extends": [
"prettier",
"plugin:flowtype/recommended"
],
"plugins": [
"flowtype"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
}
},
"jest": {
"collectCoverage": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}