This repository has been archived by the owner on Aug 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 1.89 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
{
"name": "mocha-puppeteer",
"version": "0.14.0",
"description": "Run tests in headless chrome",
"main": "lib/index.js",
"author": "Charlie Duong",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/charlieduong94/mocha-puppeteer"
},
"bin": {
"mocha-puppeteer": "./bin/mocha-puppeteer"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint && npm run transpile",
"test": "nyc ava",
"test:unit": "nyc ava test/unit",
"test:integration": "nyc ava test/integration",
"transpile": "babel src --out-dir lib --copy-files",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepare": "npm run transpile"
},
"dependencies": {
"argly": "^1.2.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-polyfill": "^6.26.0",
"bluebird": "^3.5.0",
"body-parser": "^1.18.2",
"express": "^4.15.4",
"fs-walk": "0.0.1",
"lasso": "^2.11.16",
"lasso-babel-transform": "^1.0.1",
"marko": "^4.4.26",
"mocha": "^3.5.0",
"puppeteer": "^0.12.0",
"rimraf": "^2.6.1",
"superagent": "^3.6.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.0",
"coveralls": "^2.13.1",
"eslint": "^4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-plus": "0.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"git-hooks": "^1.1.8",
"nyc": "^11.1.0",
"proxyquire": "^1.8.0",
"require-self-ref": "^2.0.1",
"sinon": "^3.2.1"
},
"ava": {
"babel": "inherit",
"files": [
"test/**/*.js",
"!test/util/**/*.js",
"!test/integration/mocha/static/**/*.js"
],
"require": [
"babel-polyfill",
"babel-register",
"require-self-ref"
]
}
}