-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.9 KB
/
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
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
{
"name": "marvin-cli",
"version": "1.0.0-beta",
"main": "index.js",
"author": "Carlos Alexandre Fuechter <fuechter.carlos@gmail.com>",
"repository": "https://github.com/marvin-js/marvin",
"license": "MIT",
"bin": {
"marvin": "./dist/bin/index.js"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"chalk": "^2.3.1",
"chokidar": "^2.0.2",
"commander": "^2.13.0",
"download": "^6.2.5",
"draftlog": "^1.0.12",
"find-root": "^1.1.0",
"fs-extra": "^5.0.0",
"has-ansi": "^3.0.0",
"idx": "^2.2.0",
"inquirer": "^5.1.0",
"is-installed-globally": "^0.1.0",
"lodash": "^4.17.5",
"node-notifier": "^5.2.1",
"requireg": "^0.1.7",
"shelljs": "^0.8.1",
"stream-to-promise": "^2.2.0",
"uuid": "^3.2.1",
"wallpaper": "^2.6.0",
"xregexp": "^4.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"coveralls": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.18.2",
"eslint-plugin-flowtype": "^2.46.1",
"flow-bin": "^0.66.0",
"import": "^0.0.6",
"jsdoc-parse": "^3.0.1",
"mkdirp": "^0.5.1",
"nyc": "^11.4.1",
"sinon": "^4.2.2"
},
"ava": {
"files": [
"src/**/*.test.js"
],
"babel": "inherit",
"require": [
"babel-core/register",
"babel-polyfill"
]
},
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"test": "npm run lint && npm run flow && npm run ava",
"test-windows": "npm run lint && npm run ava",
"ava": "cross-env NODE_ENV=test nyc ava",
"lint": "eslint 'src/**/*.js'",
"report": "nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"flow": "flow"
}
}