Skip to content
This repository was archived by the owner on Jun 27, 2019. It is now read-only.

Commit 2efd87a

Browse files
committed
Adding license, readme.md and package.json
1 parent 550cfc5 commit 2efd87a

File tree

4 files changed

+395
-1
lines changed

4 files changed

+395
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,4 @@ Thumbs.db
7878
source/css/style.css.map
7979
.idea/
8080
public
81-
test/cli/tmp
81+
test/tmp

license

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Raphael Okon
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

package.json

Lines changed: 368 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,368 @@
1+
{
2+
"name": "patternlab-node-cli",
3+
"description": "Command-line interface (CLI) for the patternlab-node core.",
4+
"bin": {
5+
"patternlab": "bin/patternlab.js"
6+
},
7+
"author": {
8+
"name": "Raphael Okon"
9+
},
10+
"private": true,
11+
"dependencies": {
12+
"archiver": "1.2.0",
13+
"browser-sync": "2.17.5",
14+
"bs-html-injector": "3.0.3",
15+
"child-process-promise": "2.2.0",
16+
"colors": "1.1.2",
17+
"commander": "2.9.0",
18+
"fs-extra": "1.0.0",
19+
"glob": "7.1.1",
20+
"inquirer": "1.2.2",
21+
"lodash": "4.16.6",
22+
"path-exists": "3.0.0",
23+
"patternlab-node": " 2.6.1",
24+
"sanitize-filename": "1.6.1"
25+
},
26+
"devDependencies": {
27+
"eslint": "3.9.1",
28+
"proxyquire": "1.7.10",
29+
"tap": "8.0.0"
30+
},
31+
"files": [
32+
"bin"
33+
],
34+
"keywords": [
35+
"Pattern Lab",
36+
"Atomic Web Design",
37+
"Node",
38+
"Javascript"
39+
],
40+
"repository": {
41+
"type": "git",
42+
"url": "git://github.com/pattern-lab/patternlab-node-cli.git"
43+
},
44+
"bugs": "https://github.com/pattern-lab/patternlab-node-cli/issues",
45+
"license": "MIT",
46+
"engines": {
47+
"node": ">=4.0"
48+
},
49+
"eslintConfig": {
50+
"rules": {
51+
"no-var": "error",
52+
"prefer-const": "error",
53+
"accessor-pairs": 2,
54+
"arrow-spacing": [
55+
2,
56+
{
57+
"before": true,
58+
"after": true
59+
}
60+
],
61+
"block-spacing": [
62+
2,
63+
"always"
64+
],
65+
"brace-style": [
66+
2,
67+
"1tbs",
68+
{
69+
"allowSingleLine": true
70+
}
71+
],
72+
"camelcase": [
73+
2,
74+
{
75+
"properties": "never"
76+
}
77+
],
78+
"comma-dangle": [
79+
2,
80+
"never"
81+
],
82+
"comma-spacing": [
83+
2,
84+
{
85+
"before": false,
86+
"after": true
87+
}
88+
],
89+
"comma-style": [
90+
2,
91+
"last"
92+
],
93+
"constructor-super": 2,
94+
"curly": [
95+
2,
96+
"multi-line"
97+
],
98+
"dot-location": [
99+
2,
100+
"property"
101+
],
102+
"eol-last": 2,
103+
"eqeqeq": [
104+
2,
105+
"allow-null"
106+
],
107+
"func-call-spacing": [
108+
2,
109+
"never"
110+
],
111+
"handle-callback-err": [
112+
2,
113+
"^(err|error)$"
114+
],
115+
"key-spacing": [
116+
2,
117+
{
118+
"beforeColon": false,
119+
"afterColon": true
120+
}
121+
],
122+
"keyword-spacing": [
123+
2,
124+
{
125+
"before": true,
126+
"after": true
127+
}
128+
],
129+
"new-cap": [
130+
2,
131+
{
132+
"newIsCap": true,
133+
"capIsNew": false
134+
}
135+
],
136+
"new-parens": 2,
137+
"no-array-constructor": 2,
138+
"no-caller": 2,
139+
"no-class-assign": 2,
140+
"no-cond-assign": 2,
141+
"no-const-assign": 2,
142+
"no-constant-condition": [
143+
2,
144+
{
145+
"checkLoops": false
146+
}
147+
],
148+
"no-control-regex": 2,
149+
"no-debugger": 2,
150+
"no-delete-var": 2,
151+
"no-dupe-args": 2,
152+
"no-dupe-class-members": 2,
153+
"no-dupe-keys": 2,
154+
"no-duplicate-case": 2,
155+
"no-duplicate-imports": 2,
156+
"no-empty-character-class": 2,
157+
"no-empty-pattern": 2,
158+
"no-eval": 2,
159+
"no-ex-assign": 2,
160+
"no-extend-native": 2,
161+
"no-extra-bind": 2,
162+
"no-extra-boolean-cast": 2,
163+
"no-extra-parens": [
164+
2,
165+
"functions"
166+
],
167+
"no-fallthrough": 2,
168+
"no-floating-decimal": 2,
169+
"no-func-assign": 2,
170+
"no-global-assign": 2,
171+
"no-implied-eval": 2,
172+
"no-inner-declarations": [
173+
2,
174+
"functions"
175+
],
176+
"no-invalid-regexp": 2,
177+
"no-irregular-whitespace": 2,
178+
"no-iterator": 2,
179+
"no-label-var": 2,
180+
"no-labels": [
181+
2,
182+
{
183+
"allowLoop": false,
184+
"allowSwitch": false
185+
}
186+
],
187+
"no-lone-blocks": 2,
188+
"no-mixed-spaces-and-tabs": 2,
189+
"no-multi-spaces": 2,
190+
"no-multi-str": 2,
191+
"no-multiple-empty-lines": [
192+
2,
193+
{
194+
"max": 1
195+
}
196+
],
197+
"no-native-reassign": 2,
198+
"no-negated-in-lhs": 2,
199+
"no-new": 2,
200+
"no-new-func": 2,
201+
"no-new-object": 2,
202+
"no-new-require": 2,
203+
"no-new-symbol": 2,
204+
"no-new-wrappers": 2,
205+
"no-obj-calls": 2,
206+
"no-octal": 2,
207+
"no-octal-escape": 2,
208+
"no-path-concat": 2,
209+
"no-proto": 2,
210+
"no-redeclare": 2,
211+
"no-regex-spaces": 2,
212+
"no-return-assign": [
213+
2,
214+
"except-parens"
215+
],
216+
"no-self-assign": 2,
217+
"no-self-compare": 2,
218+
"no-sequences": 2,
219+
"no-shadow-restricted-names": 2,
220+
"no-sparse-arrays": 2,
221+
"no-template-curly-in-string": 2,
222+
"no-this-before-super": 2,
223+
"no-throw-literal": 2,
224+
"no-undef": 2,
225+
"no-undef-init": 2,
226+
"no-unexpected-multiline": 2,
227+
"no-unmodified-loop-condition": 2,
228+
"no-unneeded-ternary": [
229+
2,
230+
{
231+
"defaultAssignment": false
232+
}
233+
],
234+
"no-unreachable": 2,
235+
"no-unsafe-finally": 2,
236+
"no-unsafe-negation": 2,
237+
"no-unused-vars": [
238+
2,
239+
{
240+
"vars": "all",
241+
"args": "none"
242+
}
243+
],
244+
"no-useless-call": 2,
245+
"no-useless-computed-key": 2,
246+
"no-useless-constructor": 2,
247+
"no-useless-escape": 2,
248+
"no-useless-rename": 2,
249+
"no-whitespace-before-property": 2,
250+
"no-with": 2,
251+
"object-property-newline": [
252+
2,
253+
{
254+
"allowMultiplePropertiesPerLine": true
255+
}
256+
],
257+
"one-var": [
258+
2,
259+
{
260+
"initialized": "never"
261+
}
262+
],
263+
"operator-linebreak": [
264+
2,
265+
"after",
266+
{
267+
"overrides": {
268+
"?": "before",
269+
":": "before"
270+
}
271+
}
272+
],
273+
"padded-blocks": [
274+
2,
275+
"never"
276+
],
277+
"quotes": [
278+
2,
279+
"single",
280+
{
281+
"avoidEscape": true,
282+
"allowTemplateLiterals": true
283+
}
284+
],
285+
"rest-spread-spacing": [
286+
2,
287+
"never"
288+
],
289+
"semi-spacing": [
290+
2,
291+
{
292+
"before": false,
293+
"after": true
294+
}
295+
],
296+
"space-before-blocks": [
297+
2,
298+
"always"
299+
],
300+
"space-in-parens": [
301+
2,
302+
"never"
303+
],
304+
"space-infix-ops": 2,
305+
"space-unary-ops": [
306+
2,
307+
{
308+
"words": true,
309+
"nonwords": false
310+
}
311+
],
312+
"spaced-comment": [
313+
2,
314+
"always",
315+
{
316+
"line": {
317+
"markers": [
318+
"*package",
319+
"!",
320+
","
321+
]
322+
},
323+
"block": {
324+
"balanced": true,
325+
"markers": [
326+
"*package",
327+
"!",
328+
","
329+
],
330+
"exceptions": [
331+
"*"
332+
]
333+
}
334+
}
335+
],
336+
"template-curly-spacing": [
337+
2,
338+
"never"
339+
],
340+
"unicode-bom": [
341+
2,
342+
"never"
343+
],
344+
"use-isnan": 2,
345+
"valid-typeof": 2,
346+
"wrap-iife": [
347+
2,
348+
"any"
349+
],
350+
"yield-star-spacing": [
351+
2,
352+
"both"
353+
],
354+
"yoda": [
355+
2,
356+
"never"
357+
]
358+
},
359+
"env": {
360+
"es6": true,
361+
"node": true
362+
},
363+
"parserOptions": {
364+
"ecmaVersion": 8
365+
},
366+
"extends": "eslint:recommended"
367+
}
368+
}

0 commit comments

Comments
 (0)