-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 981 Bytes
/
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
{
"name": "generator-clay-component",
"version": "1.3.0",
"description": "A yeoman generator for Clay components!",
"files": [
"app"
],
"scripts": {
"lint": "node_modules/.bin/eslint app/*.js",
"test": "npm run lint && node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nymag/generator-clay-component.git"
},
"keywords": [
"yeoman-generator",
"clay"
],
"author": "New York Media",
"license": "MIT",
"bugs": {
"url": "https://github.com/nymag/generator-clay-component/issues"
},
"homepage": "https://github.com/nymag/generator-clay-component#readme",
"dependencies": {
"chalk": "^1.1.3",
"lodash": "^4.7.0",
"mkdirp": "^0.5.1",
"yeoman-generator": "^0.22.5",
"yeoman-option-or-prompt": "^1.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.5.3",
"mocha": "^2.4.5",
"yeoman-assert": "^2.1.2",
"yeoman-test": "^1.1.0"
}
}