-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "wizard",
"version": "2.0.0",
"description": "Wizard is a highly configurable library for building complex CLI based installation/setup wizards",
"main": "lib/index.js",
"scripts": {
"start": "npm run build && npm run build:example && node example/build",
"watch": "babel src -d lib -w",
"build": "babel src -d lib",
"watch:example": "babel example/src -d example/build -w",
"build:example": "babel example/src -d example/build",
"precommit": "lint-staged",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AaronGillBraun/wizard.git"
},
"keywords": [
"cli",
"library",
"wizard"
],
"author": "Aaron Gill-Braun <aarongillbraun@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AaronGillBraun/wizard/issues"
},
"homepage": "https://github.com/AaronGillBraun/wizard#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.4.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2"
},
"dependencies": {
"ansi-escapes": "^3.1.0",
"chalk": "^2.4.1"
}
}