forked from frctl/fractal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.26 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
{
"name": "@frctl/fractal",
"version": "1.0.11",
"description": "A tool to help you build and document web component libraries and then integrate them into your projects.",
"main": "src/fractal.js",
"repository": {
"type": "git",
"url": "https://github.com/frctl/fractal.git"
},
"author": "Mark Perkins <[email protected]> (http://clearleft.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/frctl/fractal/issues"
},
"homepage": "https://github.com/frctl/fractal",
"dependencies": {
"@allmarkedup/fang": "^1.0.0",
"@frctl/handlebars": "^1.1.2",
"@frctl/mandelbrot": "^1.0.7",
"anymatch": "^1.3.0",
"bluebird": "^3.4.1",
"browser-sync": "^2.14.0",
"chalk": "^1.1.3",
"chokidar": "^1.6.0",
"cli-table2": "^0.2.0",
"co": "^4.6.0",
"columnify": "^1.5.4",
"express": "^4.14.0",
"fs-extra": "^0.30.0",
"globby": "^6.0.0",
"gray-matter": "^2.0.2",
"handlebars": "^4.0.5",
"highlight.js": "^9.5.0",
"inquirer": "^1.1.2",
"istextorbinary": "^2.1.0",
"js-yaml": "^3.6.1",
"liftoff": "^2.3.0",
"lodash": "^4.14.1",
"log-update": "^1.0.2",
"marked": "^0.3.6",
"mime": "^1.3.4",
"minimist": "^1.2.0",
"mixwith": "^0.1.1",
"nunjucks": "^2.4.2",
"path-to-regexp": "^1.5.3",
"portscanner": "^1.0.0",
"readable-stream": "^2.1.4",
"require-all": "^2.0.0",
"semver": "^5.3.0",
"shelljs": "^0.7.3",
"throat": "^3.0.0",
"update-notifier": "^1.0.2",
"vinyl": "^1.2.0",
"vorpal": "^1.11.2"
},
"bin": {
"fractal": "./bin/fractal"
},
"engines": {
"node": ">= 4.4.7"
},
"scripts": {
"test": "./node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- --require test/support/env --reporter spec",
"lint": "./node_modules/.bin/eslint src; exit 0",
"lint:fix": "./node_modules/.bin/eslint src --fix; exit 0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.2.0",
"eslint-plugin-react": "^6.2.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.0",
"pre-commit": "^1.1.3",
"proxyquire": "^1.7.10",
"sinon": "^1.17.5"
}
}