-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.72 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
{
"name": "gootenberg",
"version": "1.7.0",
"description": "",
"main": "dist/index.js",
"module": "dist/module.js",
"bin": {
"gootenberg": "dist/cli.js"
},
"scripts": {
"dev": "nodemon --ignore dist --exec npm run build",
"build": "rollup --config config/rollup.es.js",
"test": "nyc mocha $(find src/**/test.js -name '*.js') --require \"@babel/register\" --timeout 30000",
"test-specific": "mocha $(find src/**/test.js -name '*.js') --require \"@babel/register\" --timeout 30000 -g "
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.0.0",
"@politico/eslint-config-interactives": "^1.0.1",
"babel-core": "7.0.0-bridge.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-es2015": "^6.24.1",
"delay": "^5.0.0",
"dotenv": "^16.0.0",
"eslint": "^7.21.0",
"eslint-plugin-mocha": "^8.1.0",
"expect.js": "^0.3.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"nyc": "^14.1.1",
"rollup": "^1.7.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.0.1",
"yarn": "^1.9.4"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.4.2",
"aproba": "^2.0.0",
"archieml": "^0.4.2",
"fs-extra": "^7.0.1",
"google-auth-library": "^3.1.0",
"googleapis": "^39.2.0",
"html-entities": "^1.2.1",
"htmlparser2": "^3.10.0",
"inquirer": "^6.2.2",
"lodash": "^4.17.15",
"node-fetch": "^2.6.1",
"randomstring": "^1.1.5",
"url": "^0.11.0",
"yargs": "^13.2.2"
}
}