This repository has been archived by the owner on Dec 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 481
/
package.json
84 lines (84 loc) · 1.98 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
82
83
84
{
"author": "Amir Raminfar <findamir@gmail.com>",
"name": "phantom",
"description": "PhantomJS integration module for NodeJS",
"homepage": "https://github.com/amir20/phantomjs-node",
"version": "6.3.0",
"repository": {
"type": "git",
"url": "git://github.com/amir20/phantomjs-node.git"
},
"contributors": [
{
"name": "Amir Raminfar",
"email": "findamir@gmail.com",
"web": "http://amirraminfar.com/"
}
],
"keywords": [
"phantom",
"phantomjs",
"driver"
],
"main": "dist/index.js",
"engines": {
"node": ">=8"
},
"dependencies": {
"phantomjs-prebuilt": "^2.1.16",
"split": "^1.0.1",
"winston": "^3.2.1"
},
"bin": {
"phantom": "./bin/phantom.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"flow-bin": "^0.102.0",
"flow-copy-source": "^2.0.7",
"jest": "^24.8.0",
"jest-cli": "^23.6.0",
"npm-watch": "^0.6.0",
"prettier-eslint": "^9.0.0",
"rimraf": "^2.6.3"
},
"license": "ISC",
"jest": {
"roots": [
"<rootDir>/dist"
],
"testMatch": [
"**/?(*.)+(spec|test).js"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"node_modules/",
"jest-modules/"
],
"testEnvironment": "node"
},
"watch": {
"build": "src"
},
"scripts": {
"lint": "eslint . && flow check",
"pretest": "npm run lint && npm run build",
"test": "jest",
"clean": "rimraf dist",
"flowbuild": "flow-copy-source src dist",
"prebuild": "npm run clean && npm run flowbuild",
"build": "babel src -d dist",
"prepublishOnly": "npm run build",
"watch": "npm-watch"
}
}