-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.9 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
{
"name": "@buggyorg/buggy",
"version": "0.2.0-pre.8",
"description": "CLI for Buggy.",
"main": "./lib/api.js",
"bin": {
"buggy": "./lib/cli.js"
},
"scripts": {
"test": "standard src/**/*.js && npm run build && mocha --compilers js:babel-register",
"lint": "standard src/**/*.js",
"build": "babel src -d lib",
"prepublish": "babel src -d lib"
},
"keywords": [
"Code-Generation"
],
"author": "Maximilian Klein",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-eslint": "^7.2.1",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-register": "^6.3.13",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"cuid": "^1.3.8",
"fs-extra": "^1.0.0",
"mocha": "^2.4.5",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"standard": "^9.0.0"
},
"dependencies": {
"@buggyorg/graphtools": "^0.4.0-pre.8",
"@buggyorg/library-cli": "^0.1.7",
"babel-runtime": "^6.23.0",
"chalk": "^1.1.3",
"child-process-promise": "^2.2.0",
"cli-ext": "^1.1.0",
"fs-promise": "^2.0.2",
"function-cache": "LittleHelicase/function-cache#8e95eeb1f204c24f43470abb848adbc9d3852cc5",
"get-stdin": "^5.0.1",
"graphlib": "^2.1.1",
"lockfile": "^1.0.3",
"lodash": "^4.17.2",
"mkdirp-then": "^1.2.0",
"ora": "^1.1.0",
"promise-sequential": "^1.1.1",
"semver": "^5.3.0",
"terminal-graphs": "^1.0.6",
"walkdir": "0.0.11",
"yargs": "^6.6.0"
},
"directories": {
"example": "example",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuggyOrg/buggy-cli.git"
},
"bugs": {
"url": "https://github.com/BuggyOrg/buggy-cli/issues"
},
"homepage": "https://github.com/BuggyOrg/buggy-cli#readme",
"standard": {
"parser": "babel-eslint"
}
}