-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.45 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": "@politico/interactive-templates",
"version": "1.5.0",
"description": "Templating engine for generating codebases.",
"main": "dist/index.js",
"module": "dist/module.js",
"bin": {
"pit": "dist/cli.js"
},
"scripts": {
"dev": "nodemon --ignore dist --exec npm run build",
"build": "rollup --config config/rollup.es.js",
"postbuild": "node ./bin/post-build.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",
"posttest": "rmdir test 2>/dev/null ; exit 0;",
"posttest-specific": "npm run posttest"
},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.10.1",
"@babel/register": "^7.0.0",
"@politico/eslint-config-interactives": "^0.0.4",
"aws-sdk": "^2.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-plugin-webpack-alias": "^2.1.2",
"babel-preset-es2015": "^6.24.1",
"eslint": "^5.14.1",
"eslint-plugin-mocha": "^5.3.0",
"expect.js": "^0.3.1",
"inquirer-test": "^2.0.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"nyc": "^13.1.0",
"rollup": "^1.17.0",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"yarn": "^1.9.4"
},
"author": "",
"license": "MIT",
"peerDependencies": {
"aws-sdk": "^2.0.0"
},
"dependencies": {
"@babel/runtime": "^7.4.2",
"@octokit/rest": "^17.1.2",
"@politico/hermes": "^0.0.3",
"chalk": "^2.4.2",
"child-process-promise": "^2.2.1",
"cli-progress": "^2.1.1",
"ejs": "^2.6.1",
"figlet": "^1.2.1",
"fs-extra": "^7.0.1",
"glob": "^7.1.4",
"glob-gitignore": "^1.0.13",
"ignore": "^5.1.2",
"inquirer": "^6.2.2",
"istextorbinary": "^2.5.1",
"lodash": "^4.17.11",
"npm-api": "^0.4.12",
"require-from-string": "^2.0.2",
"rimraf": "^2.6.3",
"semver": "^6.2.0",
"yargs": "^13.3.0"
},
"repository": {
"type": "git",
"url": "[email protected]:The-Politico/politico-interactive-templates.git"
},
"nyc": {
"include": "src"
}
}