-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.81 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.81 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
{
"name": "tramp-cli",
"version": "0.2.0",
"description": "A graceful migration tool, with excellent interactive design. No framework or program language bound.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mr5/tramp-cli.git"
},
"bin": {
"tramp": "bin/tramp.js"
},
"scripts": {
"prestart": "npm run build",
"prepublish": "rm -rf ./build && npm run build",
"build": "./node_modules/.bin/gulp build",
"lint": "eslint src/* --ext .js",
"ava": "babel-node ./node_modules/.bin/ava --verbose",
"test": "nyc -a --reporter=lcov --reporter=text --reporter=html npm run ava"
},
"nyc": {
"require": [],
"include": [
"src/**/*.js"
]
},
"dependencies": {
"ascii-table-unicode": "^0.1.1",
"caporal": "^0.6.0",
"chalk": "^1.1.3",
"emphasize": "^1.4.0",
"globby": "^6.1.0",
"indent-string": "^3.1.0",
"inquirer": "^3.2.0",
"listr": "^0.12.0",
"listr-overwrite-renderer": "^0.4.1",
"lodash": "^4.17.4",
"moment-timezone": "^0.5.13",
"mysql": "^2.13.0",
"open-in-editor": "^2.2.0",
"ora": "^1.2.0",
"promise-mysql": "^3.0.1",
"wrap-ansi": "^2.1.0"
},
"devDependencies": {
"ava": "^0.21.0",
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015-node6": "^0.4.0",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-cli": "^1.3.0",
"gulp-sourcemaps": "^2.6.0",
"nyc": "^11.0.3"
}
}