forked from lenconda/generator-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.75 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.75 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
73
74
75
76
77
78
79
80
81
82
{
"name": "@dollie/cli",
"version": "1.2.1",
"description": "CLI for Dollie.js",
"homepage": "https://github.com/dolliejs/dollie-cli#readme",
"author": {
"name": "lenconda",
"email": "i@lenconda.top",
"url": "https://lenconda.top"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"bin",
"package.json",
"README.md",
"LICENSE"
],
"main": "lib/index.js",
"bin": {
"dollie": "bin/dollie.js"
},
"keywords": [
"Webpack",
"React.js",
"Yeoman",
"yeoman-generator"
],
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.7",
"@types/lodash": "^4.14.168",
"@types/yeoman-environment": "^2.10.2",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"coveralls": "^3.0.5",
"eslint": "^7.12.1",
"eslint-config-alloy": "^3.10.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^5.1.1",
"jest": "^24.8.0",
"lint-staged": "^9.2.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"tsc": "^1.20150623.0",
"typescript": "^4.1.3"
},
"engines": {
"npm": ">= 6.0.0",
"node": ">= 10.0.0"
},
"dependencies": {
"@dollie/core": "^2.2.0",
"commander": "^7.0.0",
"fs-extra": "^9.1.0",
"lodash": "^4.17.21",
"yeoman-environment": "^2.10.3"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"scripts": {
"pretest": "eslint .",
"test": "exit 0",
"clean:build": "rimraf lib",
"build": "npm run clean:build && tsc"
},
"repository": "https://github.com/dolliejs/dollie-cli.git",
"license": "MIT"
}