-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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": "generator-pattern-lab-starter",
"version": "3.0.2",
"description": "Yeoman generator",
"license": "MIT",
"main": "generators/app/index.js",
"repository": "Phase2/generator-pattern-lab-starter",
"author": {
"name": "Evan Lovely",
"email": "",
"url": "https://github.com/EvanLovely"
},
"engines": {
"node": ">=4.2.0"
},
"scripts": {
"test": "mocha",
"release": "git push && git push --tags && npm publish",
"lint": "eslint ./ --cache"
},
"files": [
"generators",
"extras"
],
"keywords": [
"yeoman-generator",
"pattern-lab",
"prototyping"
],
"dependencies": {
"chalk": "^1.1.3",
"fs-extra": "^4.0.2",
"lodash": "^4.17.4",
"yeoman-generator": "^1.1.0",
"yosay": "^1.2.1"
},
"devDependencies": {
"mocha": "*",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0"
}
}