-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "devion",
"version": "0.1.8",
"description": "One command to run all your projects in development",
"main": "dist/index.js",
"scripts": {
"build": "npx webpack",
"watch": "npx webpack --watch",
"test": "npx eslint --color src test && npx jest"
},
"repository": {
"type": "git",
"url": "git@github.com/alchaplinsky/devion.git"
},
"keywords": [
"cli",
"development",
"projects",
"applications",
"runner"
],
"author": "Alex Chaplinsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/alchaplinsky/devion/issues"
},
"homepage": "https://github.com/alchaplinsky/devion#readme",
"preferGlobal": true,
"bin": {
"devion": "bin/devion"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"core-js": "^3.6.4",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^25.2.7",
"prettier": "^2.0.3",
"regenerator-runtime": "^0.13.5",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"chalk": "^4.0.0",
"commander": "^5.0.0",
"inquirer": "^7.1.0"
}
}