-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
101 lines (101 loc) · 2.38 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ever-cli",
"version": "0.0.13",
"description": "A command line tool for Ever Platform",
"license": "GPL-3.0",
"homepage": "https://ever.co",
"main": "./dist/main.js",
"private": false,
"author": {
"name": "Ever Co. LTD",
"email": "[email protected]",
"url": "https://ever.co"
},
"scripts": {
"build": "cross-env NODE_ENV=development rimraf ./dist && tsc --build tsconfig.json",
"start": "cross-env NODE_ENV=development npm run build && node ./dist/main.js",
"coverage": "cross-env NODE_ENV=development nyc report --reporter=json > coverage/coverage.json",
"test": "cross-env NODE_ENV=test echo TODO: Tests",
"lint": "cross-env NODE_ENV=development tslint -c tslint.json 'src/**/*.ts'",
"release": "np",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ever-co/ever-cli.git"
},
"bin": {
"ever": "./dist/main.js"
},
"keywords": [
"cli",
"ever",
"platform",
"framework",
"commerce"
],
"bugs": {
"url": "https://github.com/ever-co/ever-cli/issues"
},
"devDependencies": {
"@types/figlet": "^1.2.0",
"@types/lodash": "^4.14.137",
"@types/node": "12.12.17",
"@types/uuid": "^3.4.4",
"@types/yargs": "^13.0.0",
"codecov": "^3.5.0",
"cross-env": "^6.0.0",
"prettier": "^1.18.2",
"nyc": "^14.1.1",
"prettier-tslint": "^0.4.2",
"pretty-quick": "^2.0.0",
"ts-node": "^8.2.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "3.5.1",
"watch": "^1.0.2",
"np": "*"
},
"dependencies": {
"axios": "^1.6.0",
"analytics-node": "^3.3.0",
"chalk": "^3.0.0",
"clear": "^0.1.0",
"figlet": "^1.2.3",
"fs-extra": "^8.0.1",
"lodash": "^4.17.11",
"node-fetch": "^2.6.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"semver": "^7.5.2",
"url": "^0.11.0",
"uuid": "^3.3.2",
"yargs": "^15.0.2",
"@snyk/protect": "latest"
},
"nyc": {
"include": [
"packages/**/*.ts"
],
"exclude": [
"node_modules/"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"engines": {
"node": ">=10.15.0"
},
"snyk": true
}