-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
39 lines (39 loc) · 837 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
{
"name": "generator-gizmo",
"version": "0.1.0",
"preferGlobal": true,
"description": "A yeoman generator for Adobe Photoshop Extensions",
"main": "app/index.js",
"scripts": {
"hint": "jshint ./app",
"test": "./node_modules/.bin/mocha",
"test-ci": "npm run hint && npm run test"
},
"keywords": [
"adobe",
"extension",
"photoshop",
"yeoman",
"generator"
],
"author": "codearoni",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"yeoman-generator": "^0.24.1",
"yosay": "^1.2.0"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"jshint": "^2.9.1",
"mocha": "^2.5.3",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/codearoni/generator-gizmo.git"
}
}