-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "cucumberly-editor",
"version": "0.0.1",
"description": "Cucumberly is a cucumber features editor but for \"Muggles\".",
"main": "src/index.html",
"scripts": {
"jshint": "./node_modules/jshint/bin/jshint src/iris src/js/init.js",
"jscs": "./node_modules/jscs/bin/jscs src/iris src/js/init.js",
"lint": "npm run jscs && npm run jshint",
"start": "node_modules/.bin/nw .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thegameofcode/cucumberly-editor.git"
},
"author": "http://www.thegameofcode.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/thegameofcode/cucumberly-editor/issues"
},
"homepage": "https://github.com/thegameofcode/cucumberly-editor#readme",
"window": {
"frame": true,
"toolbar": false,
"position": "mouse",
"width": 1400,
"min_width": 1000,
"height": 700,
"min_height": 600
},
"dependencies": {
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"nedb": "^1.1.3",
"nunjucks": "^2.0.0"
},
"webkit": {
"plugin": false,
"java": false,
"page-cache": false
},
"devDependencies": {
"jscs": "^2.1.1",
"jshint": "^2.8.0",
"nw": "^0.12.3"
},
"js-flags": "--harmony"
}