forked from sane/sane
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "sane-cli",
"version": "0.1.0-beta.1",
"trackingCode": "UA-46963158-10",
"description": "A command-line tool for creating full stack sails-ember applications using docker",
"main": "bin/sane",
"scripts": {
"pretest": "npm run lint && npm run build",
"prepublish": "npm run build",
"build": "babel src --out-dir lib",
"build:watch": "babel src --out-dir lib --watch",
"lint": "eslint bin/sane src tests",
"test": "node tests/runner",
"test-all": "node tests/runner all",
"autotest": "mocha --watch --reporter spec tests/**/*Test.js"
},
"bin": {
"sane": "./bin/sane"
},
"repository": {
"type": "git",
"url": "https://github.com/artificialio/sane"
},
"keywords": [
"sane",
"sane-cli",
"ember",
"ember.js",
"sails",
"sails.js",
"full-stack",
"fullstack",
"javascript",
"cli",
"docker",
"fig"
],
"author": "Markus Padourek <markus.padourek@gmail.com> (http://artificial.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/artificialio/sane/issues"
},
"homepage": "http://sanestack.com",
"dependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"captains-log": "^0.11.11",
"chalk": "^1.0.0",
"child-process-promise": "^1.0.1",
"commander": "~2.9.0",
"configstore": "^1.4.0",
"diff": "^2.2.1",
"ember-cli": "~2.3.0",
"enpeem": "git://github.com/globegitter/enpeem.git#skip-dry-run-prefix-features",
"exit": "^0.1.2",
"findup": "^0.1.5",
"fs-extra": "~0.26.5",
"handlebars": "~4.0.5",
"leek": "0.0.21",
"lodash": "^3.6.0",
"node-uuid": "^1.4.2",
"npm-which": "^2.0.0",
"pleasant-progress": "^1.0.2",
"pluralize": "^1.1.2",
"readline-sync": "^1.4.1",
"resolve": "^1.0.0",
"rsvp": "^3.0.18",
"verboser": "^1.0.3",
"walk-sync": "~0.2.6",
"which": "^1.0.9",
"yam": "0.0.18"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"babel-plugin-transform-regenerator": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"eslint": "^2.2.0",
"glob": "7.0.0",
"mocha": "^2.1.0",
"node-require-timings": "1.0.0",
"tmp-sync": "^1.0.1"
},
"preferGlobal": true
}