-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.78 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.78 KB
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
{
"name": "eta-cli",
"version": "0.4.0",
"description": "A simple CLI for scaffolding ETA™ projects.",
"preferGlobal": true,
"bin": {
"eta": "bin/eta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nfq-eta/eta-cli.git"
},
"keywords": [
"nfq",
"cli"
],
"author": "ETA™",
"license": "MIT",
"bugs": {
"url": "https://github.com/nfq-eta/eta-cli/issues"
},
"homepage": "https://github.com/nfq-eta/eta-cli#readme",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run e2e",
"lint": "eslint test/e2e/test.js lib bin/* --env mocha",
"e2e": "rimraf test/e2e/mock-template-build/*.* && cross-env BABEL_ENV=development mocha test/e2e/test.js --slow 1000 --compilers js:babel-core/register",
"release": "npm run lint && yarn version",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"dependencies": {
"async": "^2.1.4",
"chalk": "^2.0.0",
"commander": "^2.9.0",
"consolidate": "^0.14.0",
"dotenv": "^2.0.0",
"download-git-repo": "^1.0.0",
"handlebars": "^4.7.7",
"inquirer": "^3.2.0",
"metalsmith": "^2.3.0",
"minimatch": "^3.0.3",
"ora": "^0.2.1",
"read-metadata": "^1.0.0",
"request": "^2.79.0",
"rimraf": "^2.5.4",
"semver": "^5.1.0",
"uid": "0.0.2",
"validate-npm-package-name": "^2.2.2",
"snyk": "^1.685.0"
},
"devDependencies": {
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.5.0",
"cross-env": "^1.0.7",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-promise": "^1.1.0",
"mocha": "^6.2.0"
},
"engines": {
"node": ">=6.0.0"
},
"snyk": true
}