-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 1.99 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@recli/cli",
"version": "1.0.23",
"bin": {
"recli": "dist/cli.js"
},
"description": "Tool to create tasks in node js",
"files": [
"dist/"
],
"main": "dist/index.js",
"scripts": {
"crap": "node ./crap.js",
"test": "jest",
"prepublish": "npm run build",
"link": "npm run build && npm link",
"test-module": "node ./dist/cli.js",
"run": "babel-node index.js",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel ./lib --out-dir ./dist --extensions '.ts,.js' --source-maps inline",
"run-local": "babel-node index.js --local --test"
},
"preferGlobal": true,
"keywords": [
"yeoman-generator",
"cli",
"recli",
"@recli/cli",
"automation",
"generator",
"task"
],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@types/glob": "^7.1.1",
"@types/inquirer": "^6.0.0",
"@types/lodash": "^4.14.123",
"@types/ncp": "^2.0.1",
"@types/ora": "^3.2.0",
"@types/pluralize": "^0.0.29",
"colors": "^1.1.2",
"cross-env": "^5.2.0",
"ejs": "^2.6.1",
"glob": "^7.1.3",
"inquirer": "^6.3.1",
"ncp": "^2.0.0",
"ora": "^3.4.0",
"pluralize": "^4.0.0",
"pretty-error": "^2.1.1"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@types/ejs": "^2.6.3",
"@types/jest": "^24.0.11",
"@types/node": "^11.13.7",
"babel-jest": "^24.7.1",
"jest": "^24.7.1",
"typescript": "^3.4.4"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/generators/",
"/fake/"
]
},
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/recli/cli.git"
},
"bugs": {
"url": "https://github.com/recli/cli/issues"
},
"homepage": "https://github.com/recli/cli#readme"
}