-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.15 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
{
"name": "sb-cli",
"author": "freeman14",
"version": "1.1.2",
"description": "Easiest way to add SB to your project.",
"bin": {
"sb-create": "./bin/generate.js"
},
"scripts": {
"test": "npm run lint",
"lint": "eslint lib bin",
"lintfix": "eslint lib bin --fix",
"sb": "node ./sb/.webpack/server.js --NODE_ENV=dev",
"sb-build": "webpack --config ./sb/.webpack/webpack.build.babel.js --NODE_ENV=production",
"sb-publish": "node sb/.script/ghpages.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ui-storybook/sb-cli.git"
},
"keywords": [
"sb",
"ui-storybook",
"generator",
"cli"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ui-storybook/sb-cli/issues"
},
"homepage": "https://github.com/ui-storybook/sb-cli#readme",
"dependencies": {
"chalk": "^1.1.3",
"commander": "^2.9.0",
"json5": "^0.5.0",
"merge-dirs": "^0.2.1",
"shelljs": "^0.7.3",
"spawn-sync": "^1.0.15",
"update-notifier": "^1.0.2"
},
"devDependencies": {
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^5.0.1",
"eslint-plugin-import": "^1.12.0"
}
}