forked from pattern-lab/patternlab-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@pattern-lab/cli",
"description": "Command-line interface (CLI) for the @pattern-lab/core.",
"version": "0.0.1-alpha.22",
"bin": {
"patternlab": "bin/patternlab.js"
},
"author": {
"name": "Raphael Okon"
},
"dependencies": {
"@pattern-lab/core": "^3.0.0-alpha.16",
"@pattern-lab/live-server": "^1.3.3-alpha.6",
"archiver": "2.1.1",
"chalk": "2.4.1",
"commander": "2.15.1",
"execa": "0.10.0",
"fs-extra": "6.0.1",
"glob": "7.1.2",
"has-yarn": "1.0.0",
"inquirer": "5.1.0",
"lodash": "4.17.10",
"ora": "2.1.0",
"path-exists": "3.0.0",
"sanitize-filename": "1.6.1"
},
"devDependencies": {
"eslint": "4.18.2",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-prettier": "2.6.0",
"prettier": "1.11.1",
"proxyquire": "2.0.1",
"tap": "11.1.1"
},
"files": [
"bin"
],
"keywords": [
"Pattern Lab",
"Atomic Web Design",
"Node",
"JavaScript"
],
"scripts": {
"lint": "eslint ./{bin,test}",
"test:separate": "tap './test/*.test.js' --reporter spec --timeout=120"
},
"repository": "https://github.com/pattern-lab/patternlab-node/tree/master/packages/cli",
"bugs": "https://github.com/pattern-lab/patternlab-node/issues",
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"publishConfig": {
"access": "public"
}
}