-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.01 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": "@dxos/browser-runner",
"version": "1.0.0-beta.13",
"description": "CLI to run JavaScript files into a headless browser.",
"homepage": "https://github.com/dxos/browser-runner#readme",
"bugs": {
"url": "https://github.com/dxos/browser-runner/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dxos/browser-runner.git"
},
"license": "AGPLv3",
"files": [
"bin",
"dist",
"index.js",
".env.default"
],
"bin": {
"browser-runner": "bin/cli.js"
},
"main": "index.js",
"browser": "dist/index.js",
"scripts": {
"build": "npm run clean && npm run build:babel",
"build:babel": "babel ./src --out-dir ./dist --ignore \"**/*.test.js\" --source-maps",
"clean": "del-cli dist",
"lint": "semistandard 'src/**/*.js'",
"prepublishOnly": "npm run build && npm run test",
"test": "node ./bin/cli test.js",
"posttest": "npm run lint"
},
"browserslist": [
"> 5%"
],
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@babel/core": "^7.4.5",
"babel-loader": "^8.1.0",
"debug": "^4.1.1",
"dotenv-webpack": "^1.7.0",
"get-port": "^5.1.1",
"html-webpack-plugin": "^4.3.0",
"http-server": "^0.12.3",
"p-limit": "^2.3.0",
"puppeteer": "^5.2.1",
"serve-handler": "^6.1.2",
"source-map-support": "^0.5.12",
"tempy": "^0.5.0",
"webpack": "^4.43.0",
"webpack-inject-plugin": "^1.5.4",
"yargs": "^15.3.1"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-inline-import": "^3.0.0",
"cpy-cli": "^2.0.0",
"del-cli": "^3.0.0",
"jest": "^24.5.0",
"semistandard": "14.2.0"
},
"publishConfig": {
"access": "public"
},
"semistandard": {
"parser": "babel-eslint",
"env": [
"jest",
"node",
"browser"
]
}
}