forked from entwicklerstube/takeoff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 918 Bytes
/
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
{
"name": "takeoff-cli",
"version": "3.0.3",
"main": "index.js",
"repository": "[email protected]:entwicklerstube/takeoff.git",
"author": "michaelzoidl <[email protected]>",
"contributors": [
"Jan Schmidle <[email protected]> (https://cospired.com/)"
],
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"fs-extra": "^3.0.1",
"inquirer": "^3.0.6",
"meow": "^3.7.0",
"p-map": "^1.1.1",
"shortid": "^2.2.8",
"taskler": "^1.1.2",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"chai": "^4.0.0",
"mocha": "^3.4.2",
"mock-fs": "^4.3.0",
"mock-require": "^2.0.2",
"np": "^2.20.1",
"xo": "^0.18.2"
},
"bin": {
"takeoff": "cli.js"
},
"xo": {
"space": true,
"env": [
"mocha"
]
},
"scripts": {
"test": "mocha test.js",
"lint": "xo *.js **/*.js",
"prepublishOnly": "np --no-publish"
}
}